[497] | 1 | %'read_field': read the fields from files in different formats (netcdf files, images, video) |
---|
[181] | 2 | %-------------------------------------------------------------------------- |
---|
[450] | 3 | % function [Field,ParamOut,errormsg] = read_field(FileName,FileType,ParamIn,num) |
---|
[181] | 4 | % |
---|
| 5 | % OUTPUT: |
---|
| 6 | % Field: matlab structure representing the field |
---|
| 7 | % ParamOut: structure representing parameters: |
---|
| 8 | % .FieldName; field name |
---|
| 9 | % .VelType |
---|
| 10 | % .CivStage: stage of civx processing (=0, not Civx, =1 (civ1), =2 (fix1).... |
---|
| 11 | % .Npx,.Npy: for images, nbre of pixels in x and y |
---|
| 12 | % errormsg: error message, ='' by default |
---|
| 13 | % |
---|
| 14 | %INPUT |
---|
[466] | 15 | % FileName: name of the input file |
---|
[497] | 16 | % FileType: type of file, as determined by the function get_file_type.m |
---|
[450] | 17 | % ParamIn: movie object or Matlab structure of input parameters |
---|
[445] | 18 | % .FieldName: name (char string) of the input field (for Civx data) |
---|
| 19 | % .VelType: char string giving the type of velocity data ('civ1', 'filter1', 'civ2'...) |
---|
[181] | 20 | % .ColorVar: variable used for vector color |
---|
| 21 | % .Npx, .Npy: nbre of pixels along x and y (used for .vol input files) |
---|
[466] | 22 | % num: frame number for movies |
---|
[497] | 23 | % |
---|
| 24 | % see also read_image.m,read_civxdata.m,read_civdata.m, |
---|
[466] | 25 | |
---|
[450] | 26 | function [Field,ParamOut,errormsg] = read_field(FileName,FileType,ParamIn,num) |
---|
[181] | 27 | Field=[]; |
---|
[354] | 28 | if ~exist('num','var') |
---|
| 29 | num=1; |
---|
| 30 | end |
---|
| 31 | if ~exist('ParamIn','var') |
---|
| 32 | ParamIn=[]; |
---|
| 33 | end |
---|
| 34 | ParamOut=ParamIn;%default |
---|
[181] | 35 | errormsg=''; |
---|
[635] | 36 | if ~exist(FileName,'file') |
---|
| 37 | erromsg=['input file ' FileName ' does not exist']; |
---|
| 38 | return |
---|
| 39 | end |
---|
[334] | 40 | A=[]; |
---|
[575] | 41 | InputField={}; |
---|
| 42 | check_colorvar=0; |
---|
[526] | 43 | if isstruct(ParamIn) |
---|
[575] | 44 | if isfield(ParamIn,'FieldName') |
---|
| 45 | if ischar(ParamIn.FieldName) |
---|
[576] | 46 | InputField={ParamIn.FieldName}; |
---|
[575] | 47 | else |
---|
| 48 | InputField= ParamIn.FieldName; |
---|
| 49 | end |
---|
[526] | 50 | end |
---|
[654] | 51 | check_colorvar=zeros(size(InputField)); |
---|
[526] | 52 | if isfield(ParamIn,'ColorVar') |
---|
| 53 | InputField=[ParamIn.FieldName {ParamIn.ColorVar}]; |
---|
[654] | 54 | check_colorvar(numel(InputField))=1; |
---|
[526] | 55 | end |
---|
[521] | 56 | end |
---|
[575] | 57 | |
---|
[334] | 58 | %% distingush different input file types |
---|
[527] | 59 | switch FileType |
---|
| 60 | case 'civdata' |
---|
| 61 | [Field,ParamOut.VelType,errormsg]=read_civdata(FileName,InputField,ParamIn.VelType); |
---|
| 62 | if ~isempty(errormsg),errormsg=['read_civdata / ' errormsg];return,end |
---|
| 63 | ParamOut.CivStage=Field.CivStage; |
---|
| 64 | case 'civx' |
---|
| 65 | ParamOut.FieldName='velocity';%Civx data found, set .FieldName='velocity' by default |
---|
| 66 | [Field,ParamOut.VelType,errormsg]=read_civxdata(FileName,InputField,ParamIn.VelType); |
---|
| 67 | if ~isempty(errormsg),errormsg=['read_civxdata / ' errormsg];return,end |
---|
| 68 | ParamOut.CivStage=Field.CivStage; |
---|
| 69 | case 'netcdf' |
---|
| 70 | ListVar={}; |
---|
| 71 | for ilist=1:numel(InputField) |
---|
| 72 | r=regexp(InputField{ilist},'(?<Operator>(^vec|^norm))\((?<UName>.+),(?<VName>.+)\)$','names'); |
---|
[654] | 73 | if isempty(r)% no operator used |
---|
[527] | 74 | ListVar=[ListVar InputField(ilist)]; |
---|
[654] | 75 | if check_colorvar(ilist) |
---|
| 76 | Role{numel(ListVar)}='ancillary';% not projected with interpolation |
---|
| 77 | ProjModeRequest{numel(ListVar)}=''; |
---|
| 78 | else |
---|
[527] | 79 | Role{numel(ListVar)}='scalar'; |
---|
[648] | 80 | ProjModeRequest{numel(ListVar)}='interp_lin';%scalar field (requires interpolation for plot) |
---|
[654] | 81 | end |
---|
| 82 | else % an operator 'vec' or 'norm' is used |
---|
[527] | 83 | ListVar=[ListVar {r.UName,r.VName}]; |
---|
| 84 | Role{numel(ListVar)}='vector_y'; |
---|
| 85 | Role{numel(ListVar)-1}='vector_x'; |
---|
[654] | 86 | if ~check_colorvar(ilist) && strcmp(r.Operator,'norm') |
---|
[648] | 87 | ProjModeRequest{numel(ListVar)-1}='interp_lin';%scalar field (requires interpolation for plot) |
---|
| 88 | ProjModeRequest{numel(ListVar)}='interp_lin'; |
---|
[654] | 89 | else |
---|
[648] | 90 | ProjModeRequest{numel(ListVar)-1}=''; |
---|
| 91 | ProjModeRequest{numel(ListVar)}=''; |
---|
| 92 | end |
---|
[493] | 93 | end |
---|
[527] | 94 | end |
---|
[648] | 95 | if isfield(ParamIn,'TimeDimName')% case of reading of a single time index in a multidimensional array |
---|
| 96 | [Field,var_detect,ichoice]=nc2struct(FileName,'TimeDimName',ParamIn.TimeDimName,num,[ParamIn.Coord_x (ParamIn.Coord_y) ListVar]); |
---|
| 97 | else |
---|
[595] | 98 | [Field,var_detect,ichoice]=nc2struct(FileName,[ParamIn.Coord_x (ParamIn.Coord_y) ListVar]); |
---|
[648] | 99 | end |
---|
[534] | 100 | if isfield(Field,'Txt') |
---|
| 101 | errormsg=Field.Txt; |
---|
| 102 | return |
---|
| 103 | end |
---|
[527] | 104 | for ivar=1:numel(ListVar) |
---|
| 105 | Field.VarAttribute{ivar+2}.Role=Role{ivar}; |
---|
[648] | 106 | if isfield(ParamIn,'FieldName') |
---|
| 107 | Field.VarAttribute{ivar+2}.FieldName=ParamIn.FieldName; |
---|
| 108 | end |
---|
| 109 | Field.VarAttribute{ivar+2}.ProjModeRequest=ProjModeRequest{ivar}; |
---|
| 110 | end |
---|
[527] | 111 | case 'video' |
---|
| 112 | if strcmp(class(ParamIn),'VideoReader') |
---|
| 113 | A=read(ParamIn,num); |
---|
| 114 | else |
---|
| 115 | ParamOut=VideoReader(FileName); |
---|
| 116 | A=read(ParamOut,num); |
---|
| 117 | end |
---|
| 118 | case 'mmreader' |
---|
| 119 | if strcmp(class(ParamIn),'mmreader') |
---|
| 120 | A=read(ParamIn,num); |
---|
| 121 | else |
---|
| 122 | ParamOut=mmreader(FileName); |
---|
| 123 | A=read(ParamOut,num); |
---|
| 124 | end |
---|
| 125 | case 'vol' |
---|
| 126 | A=imread(FileName); |
---|
| 127 | Npz=size(A,1)/ParamIn.Npy; |
---|
| 128 | A=reshape(A',ParamIn.Npx,ParamIn.Npy,Npz); |
---|
| 129 | A=permute(A,[3 2 1]); |
---|
| 130 | case 'multimage' |
---|
| 131 | warning 'off' |
---|
| 132 | A=imread(FileName,num); |
---|
| 133 | case 'image' |
---|
| 134 | A=imread(FileName); |
---|
| 135 | end |
---|
| 136 | if ~isempty(errormsg) |
---|
| 137 | errormsg=[FileType ' input: ' errormsg]; |
---|
[445] | 138 | return |
---|
[334] | 139 | end |
---|
[445] | 140 | |
---|
[334] | 141 | %% case of image |
---|
| 142 | if ~isempty(A) |
---|
[452] | 143 | if isstruct(ParamOut) |
---|
[580] | 144 | ParamOut.FieldName='image'; |
---|
[452] | 145 | end |
---|
[182] | 146 | Npz=1;%default |
---|
[181] | 147 | npxy=size(A); |
---|
[580] | 148 | % Rangx=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers |
---|
| 149 | % Rangy=[npxy(1)-0.5 0.5]; % |
---|
[181] | 150 | Field.NbDim=2;%default |
---|
| 151 | Field.AName='image'; |
---|
| 152 | Field.ListVarName={'AY','AX','A'}; % |
---|
| 153 | if ndims(A)==3 |
---|
| 154 | if Npz==1;%color |
---|
| 155 | Field.VarDimName={'AY','AX',{'AY','AX','rgb'}}; % |
---|
| 156 | Field.AY=[npxy(1)-0.5 0.5]; |
---|
| 157 | Field.AX=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers |
---|
[452] | 158 | if isstruct(ParamOut) |
---|
[580] | 159 | ParamOut.Npx=npxy(2);% display image size on the interface |
---|
| 160 | ParamOut.Npy=npxy(1); |
---|
[452] | 161 | end |
---|
[186] | 162 | Field.VarAttribute{3}.Mesh=1; |
---|
[181] | 163 | else |
---|
| 164 | Field.NbDim=3; |
---|
| 165 | Field.ListVarName=['AZ' Field.ListVarName]; |
---|
| 166 | Field.VarDimName={'AZ','AY','AX',{'AZ','AY','AX'}}; |
---|
| 167 | Field.AZ=[npxy(1)-0.5 0.5]; |
---|
| 168 | Field.AY=[npxy(2)-0.5 0.5]; |
---|
| 169 | Field.AX=[0.5 npxy(3)-0.5]; % coordinates of the first and last pixel centers |
---|
[452] | 170 | if isstruct(ParamOut) |
---|
[580] | 171 | ParamOut.Npx=npxy(3);% display image size on the interface |
---|
| 172 | ParamOut.Npy=npxy(2); |
---|
| 173 | end |
---|
[186] | 174 | Field.VarAttribute{4}.Mesh=1; |
---|
[181] | 175 | end |
---|
| 176 | else |
---|
| 177 | Field.VarDimName={'AY','AX',{'AY','AX'}}; % |
---|
| 178 | Field.AY=[npxy(1)-0.5 0.5]; |
---|
| 179 | Field.AX=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers |
---|
[182] | 180 | ParamOut.Npx=npxy(2);% display image size on the interface |
---|
| 181 | ParamOut.Npy=npxy(1); |
---|
[186] | 182 | Field.VarAttribute{3}.Mesh=1; |
---|
[181] | 183 | end |
---|
| 184 | Field.A=A; |
---|
| 185 | Field.CoordUnit='pixel'; %used for mouse_motion |
---|
| 186 | end |
---|
| 187 | |
---|
| 188 | |
---|
[334] | 189 | |
---|