[573] | 1 | %%'check_data_files': check the existence, type and status of the files selected by series.fig |
---|
[330] | 2 | %------------------------------------------------------------------------ |
---|
[447] | 3 | % function GUI_input=check_data_files(Param) |
---|
[330] | 4 | % |
---|
[447] | 5 | %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[330] | 6 | %OUTPUT |
---|
| 7 | % GUI_input=list of options in the GUI series.fig needed for the function |
---|
| 8 | % |
---|
| 9 | %INPUT: |
---|
[447] | 10 | % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. |
---|
| 11 | % In batch mode, Param is the name of the corresponding xml file containing the same information |
---|
| 12 | % In the absence of input (as activated when the current Action is selected |
---|
| 13 | % in series), the function ouput GUI_input set the activation of the needed GUI elements |
---|
[330] | 14 | % |
---|
[447] | 15 | % Param contains the elements:(use the menu bar command 'export/GUI config' in series to see the current structure Param) |
---|
| 16 | % .InputTable: cell of input file names, (several lines for multiple input) |
---|
| 17 | % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} |
---|
| 18 | % .OutputSubDir: name of the subdirectory for data outputs |
---|
| 19 | % .OutputDir: directory for data outputs, including path |
---|
| 20 | % .Action: .ActionName: name of the current activated function |
---|
| 21 | % .ActionPath: path of the current activated function |
---|
| 22 | % .IndexRange: set the file or frame indices on which the action must be performed |
---|
| 23 | % .FieldTransform: .TransformName: name of the selected transform function |
---|
| 24 | % .TransformPath: path of the selected transform function |
---|
| 25 | % .TransformHandle: corresponding function handle |
---|
| 26 | % .InputFields: sub structure describing the input fields withfields |
---|
| 27 | % .FieldName: name of the field |
---|
| 28 | % .VelType: velocity type |
---|
| 29 | % .FieldName_1: name of the second field in case of two input series |
---|
| 30 | % .VelType_1: velocity type of the second field in case of two input series |
---|
| 31 | % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) |
---|
| 32 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[330] | 33 | |
---|
[457] | 34 | function ParamOut=check_data_files(Param) |
---|
[447] | 35 | |
---|
[592] | 36 | %% input preparation mode (no RUN) |
---|
| 37 | if isstruct(Param) && isequal(Param.Action.RUN,0) |
---|
[594] | 38 | ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) |
---|
| 39 | ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) |
---|
| 40 | ParamOut.NbSlice='on';%nbre of slices ('off' by default) |
---|
| 41 | ParamOut.VelType='off';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 42 | ParamOut.FieldName='off';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 43 | ParamOut.FieldTransform = 'off';%can use a transform function |
---|
| 44 | ParamOut.ProjObject='off';%can use projection object(option 'off'/'on', |
---|
| 45 | ParamOut.Mask='off';%can use mask option (option 'off'/'on', 'off' by default) |
---|
[592] | 46 | ParamOut.OutputDirExt='';%set the output dir extension (blank=no output dir) |
---|
[626] | 47 | return |
---|
[330] | 48 | end |
---|
[478] | 49 | %%%%%%%%%%%% STANDARD PART %%%%%%%%%%%% |
---|
[594] | 50 | |
---|
| 51 | %% read input parameters from an xml file if input is a file name (batch mode) |
---|
| 52 | checkrun=1; |
---|
[478] | 53 | if ischar(Param) |
---|
[594] | 54 | Param=xml2struct(Param);% read Param as input file (batch case) |
---|
| 55 | checkrun=0; |
---|
[374] | 56 | end |
---|
[626] | 57 | hseries=findobj(allchild(0),'Tag','series'); |
---|
| 58 | RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series |
---|
| 59 | WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series |
---|
[594] | 60 | |
---|
[447] | 61 | %% root input file(s) and type |
---|
| 62 | RootPath=Param.InputTable(:,1); |
---|
| 63 | RootFile=Param.InputTable(:,3); |
---|
| 64 | SubDir=Param.InputTable(:,2); |
---|
| 65 | NomType=Param.InputTable(:,4); |
---|
| 66 | FileExt=Param.InputTable(:,5); |
---|
[478] | 67 | [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param); |
---|
[592] | 68 | if isempty(i1_series) |
---|
| 69 | return |
---|
| 70 | end |
---|
[478] | 71 | %%%%%%%%%%%% |
---|
| 72 | % The cell array filecell is the list of input file names, while |
---|
| 73 | % filecell{iview,fileindex}: |
---|
| 74 | % iview: line in the table corresponding to a given file series |
---|
[626] | 75 | % fileindex: file index within the file series, |
---|
| 76 | % i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j |
---|
[478] | 77 | % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices |
---|
| 78 | %%%%%%%%%%%% |
---|
[447] | 79 | NbSlice=1;%default |
---|
[478] | 80 | if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice) |
---|
[447] | 81 | NbSlice=Param.IndexRange.NbSlice; |
---|
| 82 | end |
---|
[455] | 83 | nbview=numel(i1_series);%number of input file series (lines in InputTable) |
---|
[478] | 84 | nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) |
---|
| 85 | nbfield_i=size(i1_series{1},2); %nb of fields for the i index |
---|
| 86 | nbfield=nbfield_j*nbfield_i; %total number of fields |
---|
[626] | 87 | nbfield_i=floor(nbfield/NbSlice);%total number of indexes in a slice (adjusted to an integer number of slices) |
---|
[478] | 88 | nbfield=nbfield_i*NbSlice; %total number of fields after adjustement |
---|
[330] | 89 | |
---|
[626] | 90 | %determine the file type on each line from the first input file |
---|
[447] | 91 | ImageTypeOptions={'image','multimage','mmreader','video'}; |
---|
| 92 | NcTypeOptions={'netcdf','civx','civdata'}; |
---|
| 93 | for iview=1:nbview |
---|
| 94 | [FileType{iview},FileInfo{iview},Object{iview}]=get_file_type(filecell{iview,1}); |
---|
| 95 | CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images |
---|
| 96 | CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files |
---|
| 97 | end |
---|
[330] | 98 | |
---|
[447] | 99 | %% MAIN LOOP ON VIEWS (INPUT LINES) |
---|
[330] | 100 | for iview=1:nbview |
---|
[455] | 101 | if isequal(FileType{iview},'mmreader')||isequal(FileType{iview},'video')||isequal(FileType{iview},'multimage') |
---|
[470] | 102 | [tild,FileInfo]=get_file_type(filecell{iview,1}); |
---|
| 103 | Tabchar{1}=filecell{iview,1};%info.Filename; |
---|
[616] | 104 | Tabchar{2}=''; |
---|
| 105 | Tabchar{3}=[num2str(FileInfo.FrameRate) ' frames/s ']; |
---|
[635] | 106 | message=''; |
---|
[626] | 107 | % Tabchar{4}=''; |
---|
| 108 | % Tabchar{5}=[' compression' FileInfo.VideoCompression]; |
---|
| 109 | % Tabchar{6}=[ 'quality ' num2str(FileInfo.Quality)]; |
---|
[330] | 110 | else |
---|
| 111 | Tabchar={}; |
---|
| 112 | %LOOP ON SLICES |
---|
| 113 | for i_slice=1:NbSlice |
---|
[447] | 114 | index_slice=i_slice:NbSlice:nbfield; |
---|
[340] | 115 | filefound={}; |
---|
[451] | 116 | datnum=zeros(1,nbfield_j); |
---|
[447] | 117 | for ifile=1:nbfield_i |
---|
[626] | 118 | update_waitbar(WaitbarHandle,ifile/nbfield_i) |
---|
| 119 | if ishandle(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue') |
---|
| 120 | disp('program stopped by user') |
---|
| 121 | break |
---|
| 122 | end |
---|
| 123 | file=filecell{iview,index_slice(ifile)}; |
---|
| 124 | [Path,Name,ext]=fileparts(file); |
---|
| 125 | detect=exist(file,'file'); % check the existence of the file |
---|
| 126 | if detect==0 |
---|
| 127 | lastfield='not found'; |
---|
[594] | 128 | else |
---|
[626] | 129 | datfile=dir(file); |
---|
| 130 | if isfield(datfile,'datenum') |
---|
| 131 | datnum(ifile)=datfile.datenum; |
---|
| 132 | filefound(ifile)={datfile.name}; |
---|
| 133 | end |
---|
| 134 | lastfield=''; |
---|
| 135 | [FileType{iview},FileInfo,Object]=get_file_type(file); |
---|
| 136 | if strcmp(FileType{iview},'civx')||strcmp(FileType{iview},'civdata') |
---|
| 137 | if isfield(FileInfo,'CivStage') |
---|
| 138 | liststage={'civ1','fix1','patch1','civ2','fix2','patch2'}; |
---|
| 139 | lastfield=liststage{FileInfo.CivStage}; |
---|
[594] | 140 | end |
---|
[330] | 141 | end |
---|
[626] | 142 | lastfield=[FileType{iview} ', ' lastfield]; |
---|
[330] | 143 | end |
---|
[626] | 144 | Tabchar(1,i_slice)={['slice #' num2str(i_slice)]}; |
---|
| 145 | Tabchar(ifile+1,i_slice)={[file '...' lastfield]}; |
---|
[330] | 146 | end |
---|
| 147 | end |
---|
[340] | 148 | if isempty(filefound) |
---|
[330] | 149 | if NbSlice>1 |
---|
| 150 | message=['no set of ' num2str(NbSlice) ' (NbSlices) files found']; |
---|
| 151 | else |
---|
[594] | 152 | message='no file found'; |
---|
[330] | 153 | end |
---|
| 154 | else |
---|
| 155 | datnum=datnum(find(datnum));%keep the non zero values corresponding to existing files |
---|
[451] | 156 | filefound=filefound(find(datnum)); |
---|
[330] | 157 | [first,ind]=min(datnum); |
---|
| 158 | [last,indlast]=max(datnum); |
---|
[451] | 159 | message={['oldest modification: ' filefound{ind} ' : ' datestr(first)];... |
---|
| 160 | ['latest modification: ' filefound{indlast} ' : ' datestr(last)]}; |
---|
[594] | 161 | end |
---|
[330] | 162 | if ~isempty(Tabchar) |
---|
[594] | 163 | Tabchar=reshape(Tabchar,NbSlice*(nbfield_i+1),1); |
---|
[330] | 164 | end |
---|
| 165 | end |
---|
| 166 | hfig=figure(iview); |
---|
| 167 | clf |
---|
| 168 | if iview>1 |
---|
| 169 | pos=get(iview-1,'Position'); |
---|
| 170 | pos(1)=pos(1)+(iview-1)*pos(1)/nbview; |
---|
| 171 | set(hfig,'Position',pos) |
---|
| 172 | end |
---|
[427] | 173 | set(hfig,'name',['check_data_files:view= ' num2str(iview)]) |
---|
| 174 | set(hfig,'MenuBar','none')% suppress the menu bar |
---|
| 175 | set(hfig,'NumberTitle','off')%suppress the fig number in the title |
---|
[361] | 176 | h=uicontrol('Style','listbox', 'Position', [20 20 500 300], 'String', Tabchar, 'Callback', {'open_uvmat'}); |
---|
[330] | 177 | hh=uicontrol('Style','listbox', 'Position', [20 340 500 40], 'String', message); |
---|
| 178 | end |
---|
[649] | 179 | |
---|
| 180 | % 'open_uvmat': open with uvmat the field selected in the list of 'series/check_data_files' |
---|
| 181 | %------------------------------------------------------------------------ |
---|
| 182 | %function open_uvmat(hObject, eventdata) |
---|
| 183 | % |
---|
| 184 | % INPUT: |
---|
| 185 | % hObject: handle of uicontrol object containing the list |
---|
| 186 | % eventdata: not used |
---|
| 187 | function open_uvmat(hObject, eventdata) |
---|
| 188 | %------------------------------------------------------------------------ |
---|
| 189 | list=get(hObject,'String'); |
---|
| 190 | index=get(hObject,'Value'); |
---|
| 191 | rootroot=get(hObject,'UserData'); |
---|
| 192 | filename=list{index}; |
---|
| 193 | ind_dot=strfind(filename,'...'); |
---|
| 194 | if ~isempty(ind_dot) |
---|
| 195 | filename=filename(1:ind_dot-1); |
---|
| 196 | end |
---|
| 197 | filename=fullfile(rootroot,filename); |
---|
| 198 | if exist(filename,'file')%visualise the vel field if it exists |
---|
| 199 | uvmat(filename) |
---|
| 200 | set(gcbo,'Value',1) |
---|
| 201 | end |
---|