[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 |
---|
[784] | 16 | % FileType: type of file, as determined by the function get_file_info.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) |
---|
[693] | 22 | % .TimeDimName: name of the dimension considered as 'time', selected index value then set by input 'num' |
---|
[466] | 23 | % num: frame number for movies |
---|
[497] | 24 | % |
---|
| 25 | % see also read_image.m,read_civxdata.m,read_civdata.m, |
---|
[466] | 26 | |
---|
[809] | 27 | %======================================================================= |
---|
[977] | 28 | % Copyright 2008-2017, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France |
---|
[809] | 29 | % http://www.legi.grenoble-inp.fr |
---|
| 30 | % Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr |
---|
| 31 | % |
---|
| 32 | % This file is part of the toolbox UVMAT. |
---|
| 33 | % |
---|
| 34 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 35 | % it under the terms of the GNU General Public License as published |
---|
| 36 | % by the Free Software Foundation; either version 2 of the license, |
---|
| 37 | % or (at your option) any later version. |
---|
| 38 | % |
---|
| 39 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 40 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 41 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 42 | % GNU General Public License (see LICENSE.txt) for more details. |
---|
| 43 | %======================================================================= |
---|
| 44 | |
---|
[450] | 45 | function [Field,ParamOut,errormsg] = read_field(FileName,FileType,ParamIn,num) |
---|
[748] | 46 | %% default output and check input |
---|
[181] | 47 | Field=[]; |
---|
[354] | 48 | if ~exist('num','var') |
---|
| 49 | num=1; |
---|
| 50 | end |
---|
| 51 | if ~exist('ParamIn','var') |
---|
| 52 | ParamIn=[]; |
---|
| 53 | end |
---|
| 54 | ParamOut=ParamIn;%default |
---|
[181] | 55 | errormsg=''; |
---|
[635] | 56 | if ~exist(FileName,'file') |
---|
[747] | 57 | errormsg=['input file ' FileName ' does not exist']; |
---|
[635] | 58 | return |
---|
| 59 | end |
---|
[334] | 60 | A=[]; |
---|
[575] | 61 | InputField={}; |
---|
| 62 | check_colorvar=0; |
---|
[526] | 63 | if isstruct(ParamIn) |
---|
[575] | 64 | if isfield(ParamIn,'FieldName') |
---|
| 65 | if ischar(ParamIn.FieldName) |
---|
[576] | 66 | InputField={ParamIn.FieldName}; |
---|
[575] | 67 | else |
---|
| 68 | InputField= ParamIn.FieldName; |
---|
| 69 | end |
---|
[526] | 70 | end |
---|
[654] | 71 | check_colorvar=zeros(size(InputField)); |
---|
[684] | 72 | if isfield(ParamIn,'ColorVar')&&~isempty(ParamIn.ColorVar) |
---|
[526] | 73 | InputField=[ParamIn.FieldName {ParamIn.ColorVar}]; |
---|
[654] | 74 | check_colorvar(numel(InputField))=1; |
---|
[526] | 75 | end |
---|
[521] | 76 | end |
---|
[575] | 77 | |
---|
[334] | 78 | %% distingush different input file types |
---|
[527] | 79 | switch FileType |
---|
[748] | 80 | case 'civdata'% new format for civ results |
---|
[527] | 81 | [Field,ParamOut.VelType,errormsg]=read_civdata(FileName,InputField,ParamIn.VelType); |
---|
[907] | 82 | if ~isempty(errormsg),errormsg=['read_civdata / ' errormsg];return,end |
---|
[527] | 83 | ParamOut.CivStage=Field.CivStage; |
---|
[958] | 84 | case 'pivdata_fluidimage' |
---|
| 85 | [Field,ParamOut.VelType,errormsg]=read_pivdata_fluidimage(FileName,InputField,ParamIn.VelType); |
---|
| 86 | ParamOut.CivStage=Field.CivStage; |
---|
[748] | 87 | case 'civx'% old (obsolete) format for civ results |
---|
[527] | 88 | ParamOut.FieldName='velocity';%Civx data found, set .FieldName='velocity' by default |
---|
| 89 | [Field,ParamOut.VelType,errormsg]=read_civxdata(FileName,InputField,ParamIn.VelType); |
---|
| 90 | if ~isempty(errormsg),errormsg=['read_civxdata / ' errormsg];return,end |
---|
| 91 | ParamOut.CivStage=Field.CivStage; |
---|
[748] | 92 | case 'netcdf'% general netcdf file (not recognized as civ) |
---|
[527] | 93 | ListVar={}; |
---|
[675] | 94 | Role={}; |
---|
| 95 | ProjModeRequest={}; |
---|
[684] | 96 | ListInputField={}; |
---|
| 97 | ListOperator={}; |
---|
[681] | 98 | checkU=0; |
---|
| 99 | checkV=0; |
---|
[527] | 100 | for ilist=1:numel(InputField) |
---|
[748] | 101 | % look for input variables to read |
---|
[527] | 102 | r=regexp(InputField{ilist},'(?<Operator>(^vec|^norm))\((?<UName>.+),(?<VName>.+)\)$','names'); |
---|
[654] | 103 | if isempty(r)% no operator used |
---|
[681] | 104 | if isempty(find(strcmp(InputField{ilist},ListVar))) |
---|
[684] | 105 | ListVar=[ListVar InputField(ilist)];%append the variable name if not already in the list |
---|
| 106 | ListInputField=[ListInputField InputField(ilist)]; |
---|
| 107 | ListOperator=[ListOperator {''}]; |
---|
[681] | 108 | end |
---|
[654] | 109 | if check_colorvar(ilist) |
---|
[907] | 110 | if isempty(find(strcmp(InputField{ilist},ListVar))) |
---|
[667] | 111 | Role{numel(ListVar)}='ancillary';% not projected with interpolation |
---|
| 112 | ProjModeRequest{numel(ListVar)}=''; |
---|
[907] | 113 | end |
---|
[654] | 114 | else |
---|
[667] | 115 | Role{numel(ListVar)}='scalar'; |
---|
| 116 | ProjModeRequest{numel(ListVar)}='interp_lin';%scalar field (requires interpolation for plot) |
---|
[654] | 117 | end |
---|
| 118 | else % an operator 'vec' or 'norm' is used |
---|
[667] | 119 | if ~check_colorvar(ilist) && strcmp(r.Operator,'norm') |
---|
[675] | 120 | ProjModeRequestVar='interp_lin';%scalar field (requires interpolation for plot) |
---|
[667] | 121 | else |
---|
[675] | 122 | ProjModeRequestVar=''; |
---|
[667] | 123 | end |
---|
[675] | 124 | ind_var_U=find(strcmp(r.UName,ListVar));%check previous listing of variable r.UName |
---|
| 125 | ind_var_V=find(strcmp(r.VName,ListVar));%check previous listing of variable r.VName |
---|
| 126 | if isempty(ind_var_U) |
---|
[684] | 127 | ListVar=[ListVar {r.UName}]; % append the variable in the list if not previously listed |
---|
[675] | 128 | Role=[Role {'vector_x'}]; |
---|
| 129 | ProjModeRequest=[ProjModeRequest {ProjModeRequestVar}]; |
---|
[684] | 130 | ListInputField=[ListInputField InputField(ilist)]; |
---|
[681] | 131 | else |
---|
| 132 | checkU=1; |
---|
[675] | 133 | end |
---|
| 134 | if isempty(ind_var_V) |
---|
[684] | 135 | ListVar=[ListVar {r.VName}];% append the variable in the list if not previously listed |
---|
[675] | 136 | Role=[Role {'vector_y'}]; |
---|
| 137 | ProjModeRequest=[ProjModeRequest {ProjModeRequestVar}]; |
---|
[867] | 138 | ListInputField=[ListInputField InputField(ilist)]; |
---|
[890] | 139 | |
---|
[681] | 140 | else |
---|
| 141 | checkV=1; |
---|
[675] | 142 | end |
---|
[493] | 143 | end |
---|
[527] | 144 | end |
---|
[748] | 145 | if ~isfield(ParamIn,'Coord_z') |
---|
| 146 | ParamIn.Coord_z=[]; |
---|
| 147 | end |
---|
| 148 | NbCoord=~isempty(ParamIn.Coord_x)+~isempty(ParamIn.Coord_y)+~isempty(ParamIn.Coord_z); |
---|
[648] | 149 | if isfield(ParamIn,'TimeDimName')% case of reading of a single time index in a multidimensional array |
---|
[748] | 150 | [Field,var_detect,ichoice,errormsg]=nc2struct(FileName,'TimeDimName',ParamIn.TimeDimName,num,[ParamIn.Coord_x ParamIn.Coord_y ParamIn.Coord_z ListVar]); |
---|
[747] | 151 | elseif isfield(ParamIn,'TimeVarName')% case of reading of a single time in a multidimensional array |
---|
[748] | 152 | [Field,var_detect,ichoice,errormsg]=nc2struct(FileName,'TimeVarName',ParamIn.TimeVarName,num,[ParamIn.Coord_x ParamIn.Coord_y ParamIn.Coord_z ListVar]); |
---|
[907] | 153 | if numel(num)~=1 |
---|
| 154 | NbCoord=NbCoord+1;% adds time coordinate, except if q single time hqs been selected |
---|
| 155 | end |
---|
[648] | 156 | else |
---|
[748] | 157 | [Field,var_detect,ichoice,errormsg]=nc2struct(FileName,[ParamIn.Coord_x ParamIn.Coord_y ParamIn.Coord_z ListVar]); |
---|
[648] | 158 | end |
---|
[747] | 159 | if ~isempty(errormsg) |
---|
[534] | 160 | return |
---|
| 161 | end |
---|
[748] | 162 | %scan all the variables beyond the two first ones, ParamIn.Coord_x and ParamIn.Coord_y. |
---|
| 163 | for ilist=NbCoord+1:numel(Field.VarDimName) |
---|
| 164 | if isequal(Field.VarDimName{1},Field.VarDimName{ilist}) % if a variable has the same dimension as the coordinate, it denotes a field with unstructured coordinates |
---|
[675] | 165 | Field.VarAttribute{1}.Role='coord_x';%unstructured coordinates |
---|
| 166 | Field.VarAttribute{2}.Role='coord_y'; |
---|
[748] | 167 | if NbCoord>=3 |
---|
| 168 | Field.VarAttribute{3}.Role='coord_z'; |
---|
| 169 | end |
---|
[675] | 170 | break |
---|
| 171 | end |
---|
| 172 | end |
---|
[684] | 173 | NormName=''; |
---|
| 174 | UName=''; |
---|
| 175 | VName=''; |
---|
[896] | 176 | if numel(Field.ListVarName)>NbCoord % if there are variables beyond coord (1 D plots) |
---|
[907] | 177 | for ilist=1:numel(ListVar) |
---|
| 178 | Field.VarAttribute{ilist+NbCoord}.Role=Role{ilist}; |
---|
| 179 | Field.VarAttribute{ilist+NbCoord}.ProjModeRequest=ProjModeRequest{ilist}; |
---|
| 180 | if isfield(ParamIn,'FieldName') |
---|
| 181 | Field.VarAttribute{ilist+NbCoord}.FieldName=ListInputField{ilist}; |
---|
| 182 | end |
---|
| 183 | r=regexp(ListInputField{ilist},'(?<Operator>(^vec|^norm))\((?<UName>.+),(?<VName>.+)\)$','names'); |
---|
| 184 | if ~isempty(r)&& strcmp(r.Operator,'norm') |
---|
| 185 | NormName='norm'; |
---|
| 186 | if ~isempty(find(strcmp(ListVar,'norm'))) |
---|
| 187 | NormName='norm_1'; |
---|
| 188 | end |
---|
| 189 | Field.ListVarName=[Field.ListVarName {NormName}]; |
---|
| 190 | ilistmax=numel(Field.ListVarName); |
---|
| 191 | Field.VarDimName{ilistmax}=Field.VarDimName{ilist+2}; |
---|
| 192 | Field.VarAttribute{ilistmax}.Role='scalar'; |
---|
| 193 | Field.(NormName)=Field.(r.UName).*Field.(r.UName)+Field.(r.VName).*Field.(r.VName); |
---|
| 194 | Field.(NormName)=sqrt(Field.(NormName)); |
---|
| 195 | UName=r.UName; |
---|
| 196 | VName=r.VName; |
---|
| 197 | end |
---|
[648] | 198 | end |
---|
[907] | 199 | |
---|
| 200 | if ~isempty(NormName)% remove U and V if norm has been calculated and U and V are not needed as variables |
---|
| 201 | ind_var_U=find(strcmp(UName,ListVar));%check previous listing of variable r.UName |
---|
| 202 | ind_var_V=find(strcmp(VName,ListVar));%check previous listing of variable r.VName |
---|
| 203 | if ~checkU && ~checkV |
---|
| 204 | Field.ListVarName([ind_var_U+2 ind_var_V+2])=[]; |
---|
| 205 | Field.VarDimName([ind_var_U+2 ind_var_V+2])=[]; |
---|
| 206 | Field.VarAttribute([ind_var_U+2 ind_var_V+2])=[]; |
---|
| 207 | elseif ~checkU |
---|
| 208 | Field.ListVarName(ind_var_U+2)=[]; |
---|
| 209 | Field.VarDimName(ind_var_U+2)=[]; |
---|
| 210 | Field.VarAttribute(ind_var_U+2 )=[]; |
---|
| 211 | elseif ~checkV |
---|
| 212 | Field.ListVarName(ind_var_V+2)=[]; |
---|
| 213 | Field.VarDimName(ind_var_V+2)=[]; |
---|
| 214 | Field.VarAttribute(ind_var_V+2 )=[]; |
---|
[684] | 215 | end |
---|
[681] | 216 | end |
---|
[907] | 217 | % insert coordinates as indices in case of plots vs matrix index |
---|
| 218 | if isfield(ParamIn,'CheckCoordIndex') && ParamIn.CheckCoordIndex |
---|
| 219 | Field.ListVarName=[Field.ListDimName Field.ListVarName]; |
---|
| 220 | Field.VarDimName=[Field.ListDimName Field.VarDimName]; |
---|
| 221 | for idim=1:numel(Field.ListDimName) |
---|
| 222 | CoordName=Field.ListDimName{idim}; |
---|
| 223 | Field.(CoordName)=1:Field.DimValue(idim); |
---|
| 224 | end |
---|
| 225 | Field.VarAttribute=[cell(1,numel(Field.ListDimName)) Field.VarAttribute]; |
---|
[769] | 226 | end |
---|
[684] | 227 | end |
---|
[527] | 228 | case 'video' |
---|
| 229 | if strcmp(class(ParamIn),'VideoReader') |
---|
| 230 | A=read(ParamIn,num); |
---|
| 231 | else |
---|
| 232 | ParamOut=VideoReader(FileName); |
---|
| 233 | A=read(ParamOut,num); |
---|
| 234 | end |
---|
| 235 | case 'mmreader' |
---|
| 236 | if strcmp(class(ParamIn),'mmreader') |
---|
| 237 | A=read(ParamIn,num); |
---|
| 238 | else |
---|
| 239 | ParamOut=mmreader(FileName); |
---|
| 240 | A=read(ParamOut,num); |
---|
| 241 | end |
---|
| 242 | case 'vol' |
---|
| 243 | A=imread(FileName); |
---|
| 244 | Npz=size(A,1)/ParamIn.Npy; |
---|
| 245 | A=reshape(A',ParamIn.Npx,ParamIn.Npy,Npz); |
---|
| 246 | A=permute(A,[3 2 1]); |
---|
| 247 | case 'multimage' |
---|
[907] | 248 | % warning 'off' |
---|
[527] | 249 | A=imread(FileName,num); |
---|
| 250 | case 'image' |
---|
| 251 | A=imread(FileName); |
---|
[784] | 252 | case 'rdvision' |
---|
[785] | 253 | [A,FileInfo,timestamps]=read_rdvision(FileName,num); |
---|
[980] | 254 | case 'cine_phantom' |
---|
| 255 | [A,FileInfo] = read_cine_phantom(FileName,num ); |
---|
[784] | 256 | otherwise |
---|
| 257 | errormsg=[ FileType ': invalid input file type for uvmat']; |
---|
[527] | 258 | end |
---|
[445] | 259 | |
---|
[334] | 260 | %% case of image |
---|
| 261 | if ~isempty(A) |
---|
[784] | 262 | if strcmp(FileType,'rdvision') |
---|
| 263 | Field.Time=timestamps; |
---|
| 264 | end |
---|
[452] | 265 | if isstruct(ParamOut) |
---|
[580] | 266 | ParamOut.FieldName='image'; |
---|
[452] | 267 | end |
---|
[182] | 268 | Npz=1;%default |
---|
[181] | 269 | npxy=size(A); |
---|
[580] | 270 | % Rangx=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers |
---|
| 271 | % Rangy=[npxy(1)-0.5 0.5]; % |
---|
[181] | 272 | Field.NbDim=2;%default |
---|
| 273 | Field.AName='image'; |
---|
[782] | 274 | Field.ListVarName={'Coord_y','Coord_x','A'}; % |
---|
[181] | 275 | if ndims(A)==3 |
---|
| 276 | if Npz==1;%color |
---|
[782] | 277 | Field.VarDimName={'Coord_y','Coord_x',{'Coord_y','Coord_x','rgb'}}; % |
---|
| 278 | Field.Coord_y=[npxy(1)-0.5 0.5]; |
---|
| 279 | Field.Coord_x=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers |
---|
[452] | 280 | if isstruct(ParamOut) |
---|
[580] | 281 | ParamOut.Npx=npxy(2);% display image size on the interface |
---|
| 282 | ParamOut.Npy=npxy(1); |
---|
[452] | 283 | end |
---|
[871] | 284 | % Field.VarAttribute{3}.Mesh=1; |
---|
[181] | 285 | else |
---|
| 286 | Field.NbDim=3; |
---|
| 287 | Field.ListVarName=['AZ' Field.ListVarName]; |
---|
[782] | 288 | Field.VarDimName={'AZ','Coord_y','Coord_x',{'AZ','Coord_y','Coord_x'}}; |
---|
[181] | 289 | Field.AZ=[npxy(1)-0.5 0.5]; |
---|
[782] | 290 | Field.Coord_y=[npxy(2)-0.5 0.5]; |
---|
| 291 | Field.Coord_x=[0.5 npxy(3)-0.5]; % coordinates of the first and last pixel centers |
---|
[452] | 292 | if isstruct(ParamOut) |
---|
[580] | 293 | ParamOut.Npx=npxy(3);% display image size on the interface |
---|
| 294 | ParamOut.Npy=npxy(2); |
---|
| 295 | end |
---|
[871] | 296 | % Field.VarAttribute{4}.Mesh=1; |
---|
[181] | 297 | end |
---|
| 298 | else |
---|
[782] | 299 | Field.VarDimName={'Coord_y','Coord_x',{'Coord_y','Coord_x'}}; % |
---|
| 300 | Field.Coord_y=[npxy(1)-0.5 0.5]; |
---|
| 301 | Field.Coord_x=[0.5 npxy(2)-0.5]; % coordinates of the first and last pixel centers |
---|
[880] | 302 | % ParamOut.Npx=npxy(2);% display image size on the interface |
---|
| 303 | % ParamOut.Npy=npxy(1); |
---|
[871] | 304 | % Field.VarAttribute{3}.Mesh=1; |
---|
[181] | 305 | end |
---|
| 306 | Field.A=A; |
---|
| 307 | Field.CoordUnit='pixel'; %used for mouse_motion |
---|
[784] | 308 | |
---|
[181] | 309 | end |
---|
| 310 | |
---|
| 311 | |
---|
[334] | 312 | |
---|