[356] | 1 | %'find_file_series': check the content of an input file and find the corresponding file series |
---|
[332] | 2 | %-------------------------------------------------------------------------- |
---|
[398] | 3 | % function [RootPath,RootFile,i1_series,i2_series,j1_series,j2_series,NomType,FileType,Object,i1_input,i2_input,j1_input,j2_input]=find_file_series(fileinput) |
---|
[332] | 4 | % |
---|
| 5 | % OUTPUT: |
---|
[371] | 6 | % RootFile: root file detected in fileinput, possibly modified for movies (indexing is then done on image view, not file) |
---|
[343] | 7 | % i1_series(ref_i+1, ref_j+1,pair),i2_series,j1_series,j2_series: set of indices (i1,i2,j1,j2) sorted by ref index ref_i, ref_j, and pairindex in case of multiple pairs with the same ref |
---|
| 8 | % (ref_i+1 is used to deal with the image index zero sometimes used) |
---|
[332] | 9 | % NomType: nomenclature type corrected after checking the first file (problem of 0 before the number string) |
---|
| 10 | % FileType: type of file, = |
---|
| 11 | % = 'image', usual image as recognised by Matlab |
---|
| 12 | % = 'multimage', image series stored in a single file |
---|
| 13 | % = 'civx', netcdf file with civx convention |
---|
| 14 | % = 'civdata', civ data with new convention |
---|
| 15 | % = 'netcdf' other netcdf files |
---|
| 16 | % = 'video': movie recognised by VideoReader (e;g. avi) |
---|
| 17 | % Object: video object (=[] otherwise) |
---|
| 18 | % |
---|
| 19 | %INPUT |
---|
[371] | 20 | % RootPath: path to the directory to be scanned |
---|
| 21 | % fileinput: name (without path) of the input file sample |
---|
[332] | 22 | % |
---|
| 23 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 24 | % Copyright 2011, LEGI / CNRS-UJF-INPG, joel.sommeria@legi.grenoble-inp.fr |
---|
| 25 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 26 | % This file is part of the toolbox UVMAT. |
---|
| 27 | % |
---|
| 28 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 29 | % it under the terms of the GNU General Public License as published by |
---|
| 30 | % the Free Software Foundation; either version 2 of the License, or |
---|
| 31 | % (at your option) any later version. |
---|
| 32 | % |
---|
| 33 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 34 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 35 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 36 | % GNU General Public License (file UVMAT/COPYING.txt) for more details. |
---|
| 37 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 38 | |
---|
[398] | 39 | function [RootPath,SubDir,RootFile,i1_series,i2_series,j1_series,j2_series,NomType,FileType,Object,i1_input,i2_input,j1_input,j2_input]=find_file_series(FilePath,fileinput) |
---|
[332] | 40 | %------------------------------------------------------------------------ |
---|
[398] | 41 | |
---|
[332] | 42 | %% get input root name and nomenclature type |
---|
[398] | 43 | fullfileinput=fullfile(FilePath,fileinput);% input file name with path |
---|
| 44 | [RootPath,SubDir,RootFile,i1_input,i2_input,j1_input,j2_input,FileExt,NomType]=fileparts_uvmat(fullfileinput); |
---|
[332] | 45 | |
---|
[398] | 46 | |
---|
[332] | 47 | %% check for particular file types: images, movies, civ data |
---|
[339] | 48 | i1_series=zeros(1,1,1); |
---|
| 49 | i2_series=zeros(1,1,1); |
---|
| 50 | j1_series=zeros(1,1,1); |
---|
| 51 | j2_series=zeros(1,1,1); |
---|
[386] | 52 | % ifile_min=1;%default |
---|
[376] | 53 | [FileType,FileInfo,Object]=get_file_type(fullfileinput); |
---|
| 54 | if strcmp( FileType,'multimage')||strcmp( FileType,'video') |
---|
[388] | 55 | NomType='*'; |
---|
[397] | 56 | i1_series=(1:FileInfo.NumberOfFrames)'; |
---|
[332] | 57 | end |
---|
[339] | 58 | |
---|
[398] | 59 | if strcmp(NomType,'')||strcmp(NomType,'*') |
---|
[371] | 60 | if exist(fullfileinput,'file') |
---|
[398] | 61 | [tild,RootFile]=fileparts(fileinput);% case of constant name (no indexing), get the filename without its extension |
---|
[388] | 62 | else |
---|
[360] | 63 | RootFile=''; |
---|
[339] | 64 | end |
---|
[398] | 65 | i1_input=1;% the index now refer to the frame in the movie, choose 1 at opening |
---|
| 66 | i2_input=[]; |
---|
| 67 | j1_input=[]; |
---|
| 68 | j2_input=[]; |
---|
[388] | 69 | else |
---|
[395] | 70 | %% possibly include the first index in the root name, if there exists a corresponding xml file |
---|
[384] | 71 | NomTypePref=''; |
---|
[385] | 72 | r=regexp(NomType,'^(?<tiretnum>_?\d+)','names');%look for a number or _1 at the beginning of NomType |
---|
[384] | 73 | if ~isempty(r) |
---|
[388] | 74 | fileinput_end=regexprep(fileinput,['^' RootFile],'');%remove RootFile at the beginning of fileinput |
---|
[395] | 75 | if isempty(regexp(r.tiretnum,'^_','once'))% if a separator '_' is not detected |
---|
[388] | 76 | rr=regexp(fileinput_end,'^(?<i1>\d+)','names'); |
---|
| 77 | else% if a separator '_' is detected |
---|
| 78 | rr=regexp(fileinput_end,'^(?<i1>_\d+)','names'); |
---|
[384] | 79 | end |
---|
[388] | 80 | if ~isempty(rr) |
---|
| 81 | RootFileNew=[RootFile rr.i1]; |
---|
[395] | 82 | checkpair=~isempty(regexp(NomType,'-','once'))||~isempty(regexp(NomType,'ab$','once'))||~isempty(regexp(NomType,'AB$','once'));%case of PIV results |
---|
[398] | 83 | if exist(fullfile(RootPath,[RootFileNew '.xml']),'file') %|| (checkpair && exist(fullfile(fileparts(RootPath),[RootFileNew '.xml']),'file')) |
---|
[388] | 84 | RootFile=RootFileNew; |
---|
[391] | 85 | NomTypePref=r.tiretnum; |
---|
[388] | 86 | NomType=regexprep(NomType,['^' NomTypePref],''); |
---|
[398] | 87 | i1_input=j1_input; |
---|
[388] | 88 | i2_input=j2_input; |
---|
| 89 | j1_input=[]; |
---|
| 90 | j2_input=[]; |
---|
[395] | 91 | end |
---|
[384] | 92 | end |
---|
| 93 | end |
---|
[360] | 94 | %% analyse the list of existing files when relevant |
---|
| 95 | sep1=''; |
---|
[388] | 96 | i1_str='(?<i1>)';%will set i1=[]; |
---|
[360] | 97 | i1_star=''; |
---|
[388] | 98 | % r.sep2=''; |
---|
| 99 | i2_str='(?<i2>)';%will set i2=[]; |
---|
[360] | 100 | i2_star=''; |
---|
[388] | 101 | % sep3=''; |
---|
| 102 | j1_str='(?<j1>)';%will set j1=[]; |
---|
[360] | 103 | j1_star=''; |
---|
[388] | 104 | % sep4=''; |
---|
| 105 | j2_str='(?<j2>)';%will set j2=[]; |
---|
[360] | 106 | j2_star=''; |
---|
[388] | 107 | % NomTypeStr=NomType; |
---|
| 108 | %Look for cases with letter indexing for the second index |
---|
| 109 | r=regexp(NomType,'^(?<sep1>_?)(?<i1>\d+)(?<j1>[a|A])(?<j2>[b|B]?)$','names'); |
---|
[360] | 110 | if ~isempty(r) |
---|
[388] | 111 | sep1=r.sep1; |
---|
[399] | 112 | i1_str='(?<i1>\d+)'; |
---|
| 113 | if strcmp(lower(r.j1),r.j1)% lower case index |
---|
[388] | 114 | j1_str='(?<j1>[a-z])'; |
---|
| 115 | else |
---|
[399] | 116 | j1_str='(?<j1>[A-Z])'; % upper case index |
---|
[360] | 117 | end |
---|
[388] | 118 | j1_star='*'; |
---|
| 119 | if ~isempty(r.j2) |
---|
| 120 | if strcmp(lower(r.j1),r.j1) |
---|
| 121 | j2_str='(?<j2>[a-z])'; |
---|
| 122 | else |
---|
| 123 | j2_str='(?<j2>[A-Z])'; |
---|
| 124 | end |
---|
| 125 | j2_star='*'; |
---|
[360] | 126 | end |
---|
[388] | 127 | else %numerical indexing |
---|
| 128 | r=regexp(NomType,'^(?<sep1>_?)(?<i1>\d+)(?<i2>(-\d+)?)(?<j1>(_\d+)?)(?<j2>(-\d+)?)$','names'); |
---|
| 129 | if ~isempty(r) |
---|
| 130 | sep1=r.sep1; |
---|
| 131 | i1_str='(?<i1>\d+)'; |
---|
| 132 | i1_star='*'; |
---|
| 133 | if ~isempty(r.i2) |
---|
| 134 | i2_str='(?<i2>-\d+)'; |
---|
| 135 | i2_star='-*'; |
---|
[360] | 136 | end |
---|
[388] | 137 | if ~isempty(r.j1) |
---|
| 138 | j1_str='(?<j1>_\d+)'; |
---|
| 139 | j1_star='_*'; |
---|
[360] | 140 | end |
---|
[388] | 141 | if ~isempty(r.j2) |
---|
| 142 | j2_str='(?<j2>-\d+)'; |
---|
| 143 | j2_star='-*'; |
---|
[360] | 144 | end |
---|
| 145 | end |
---|
[332] | 146 | end |
---|
[388] | 147 | detect_string=['^' RootFile sep1 i1_str i2_str j1_str j2_str FileExt '$'];%string used in regexp to detect file indices |
---|
[360] | 148 | %find the string used to extract the relevant files with the command dir |
---|
[388] | 149 | star_string=[RootFile sep1 i1_star i2_star j1_star j2_star FileExt]; |
---|
[360] | 150 | wd=pwd;%current working directory |
---|
[398] | 151 | cd (FilePath)% move to the local dir to save time in the operation dir. |
---|
[388] | 152 | dirpair=dir(star_string);% look for relevant files in the file directory |
---|
[360] | 153 | cd(wd) |
---|
[339] | 154 | nbpair=numel(dirpair); |
---|
| 155 | ref_i_list=zeros(1,nbpair); |
---|
| 156 | ref_j_list=zeros(1,nbpair); |
---|
| 157 | if nbpair==0% no detected file |
---|
| 158 | RootFile=''; |
---|
| 159 | end |
---|
[360] | 160 | % scan the list of relevant files, extract the indices |
---|
[339] | 161 | for ifile=1:nbpair |
---|
[360] | 162 | rr=regexp(dirpair(ifile).name,detect_string,'names'); |
---|
[362] | 163 | if ~isempty(rr) |
---|
[388] | 164 | i1=str2num(rr.i1); |
---|
| 165 | i2=str2num(regexprep(rr.i2,'^-','')); |
---|
| 166 | j1=stra2num(regexprep(rr.j1,'^_','')); |
---|
| 167 | j2=stra2num(regexprep(rr.j2,'^-','')); |
---|
| 168 | ref_i=i1; |
---|
| 169 | if isempty(i2_input) |
---|
| 170 | if ~isempty(i2)% invalid file name if i2 does not exist in the input file |
---|
| 171 | break |
---|
| 172 | end |
---|
| 173 | else |
---|
| 174 | ref_i=floor((i1+i2)/2); |
---|
[339] | 175 | end |
---|
[388] | 176 | ref_j=1; |
---|
| 177 | if isempty(j1_input) |
---|
| 178 | if ~isempty(j1)% invalid file name if j1 does not exist in the input file |
---|
| 179 | break |
---|
| 180 | end |
---|
| 181 | else %j1_input is not empty |
---|
| 182 | if isempty(j1)% the detected name does not fit with the input |
---|
| 183 | break |
---|
| 184 | else |
---|
| 185 | ref_j=j1; |
---|
| 186 | if isempty(j2_input) |
---|
| 187 | if ~isempty(j2)% invalid file name if j2 does not exist in the input file |
---|
| 188 | break |
---|
| 189 | end |
---|
| 190 | else |
---|
| 191 | ref_j=floor((j1+j2)/2); |
---|
[342] | 192 | end |
---|
[339] | 193 | end |
---|
| 194 | end |
---|
[388] | 195 | % update the detected index series |
---|
| 196 | ref_i_list(ifile)=ref_i; |
---|
| 197 | ref_j_list(ifile)=ref_j; |
---|
| 198 | nb_pairs=0; |
---|
| 199 | if ~isempty(i2_input)|| ~isempty(j2_input) %deals with pairs |
---|
| 200 | if size(i1_series,1)>=ref_i+1 && size(i1_series,2)>=ref_j+1 |
---|
| 201 | nb_pairs=numel(find(i1_series(ref_i+1,ref_j+1,:)~=0)); |
---|
| 202 | end |
---|
[339] | 203 | end |
---|
[388] | 204 | i1_series(ref_i+1,ref_j+1,nb_pairs+1)=i1; |
---|
| 205 | if ~isempty(i2_input) |
---|
| 206 | i2_series(ref_i+1,ref_j+1,nb_pairs+1)=i2; |
---|
| 207 | end |
---|
| 208 | if ~isempty(j1_input) |
---|
| 209 | j1_series(ref_i+1,ref_j+1,nb_pairs+1)=j1; |
---|
| 210 | end |
---|
| 211 | if ~isempty(j2_input) |
---|
| 212 | j1_series(ref_i+1,ref_j+1,nb_pairs+1)=j1; |
---|
| 213 | j2_series(ref_i+1,ref_j+1,nb_pairs+1)=j2; |
---|
| 214 | end |
---|
[334] | 215 | end |
---|
[339] | 216 | end |
---|
| 217 | % look for the numerical string of the first files to update the NomType (take into account the 0 before the number) |
---|
| 218 | max_j=max(ref_j_list); |
---|
[350] | 219 | if isempty(max_j) |
---|
| 220 | ref_ij=ref_i_list; |
---|
| 221 | else |
---|
| 222 | ref_ij=ref_i_list*max_j+ref_j_list; % ordered by index i, then by j for a given i. |
---|
| 223 | end |
---|
[360] | 224 | [tild,ifile_min]=min(ref_ij(ref_ij>0)); |
---|
| 225 | if isempty(ifile_min) |
---|
[388] | 226 | % RootPath=''; |
---|
[350] | 227 | RootFile=''; |
---|
| 228 | NomType=''; |
---|
| 229 | else |
---|
[372] | 230 | [tild,tild,tild,tild,tild,tild,tild,tild,NomType]=fileparts_uvmat(dirpair(ifile_min).name);% update the representation of indices (number of 0 before the number) |
---|
[384] | 231 | NomType=regexprep(NomType,['^' NomTypePref],''); |
---|
[350] | 232 | end |
---|
[386] | 233 | %% update the file type if the input file does not exist (pb of 0001) |
---|
| 234 | if isempty(FileType) |
---|
| 235 | [FileType,tild,Object]=get_file_type(dirpair(ifile_min).name); |
---|
| 236 | end |
---|
[339] | 237 | end |
---|
| 238 | |
---|
| 239 | %% set to empty array the irrelevant index series |
---|
| 240 | if isequal(i1_series,0), i1_series=[]; end |
---|
| 241 | if isequal(i2_series,0), i2_series=[]; end |
---|
| 242 | if isequal(j1_series,0), j1_series=[]; end |
---|
| 243 | if isequal(j2_series,0), j2_series=[]; end |
---|
| 244 | |
---|
| 245 | %% sort pairs by decreasing index differences in case of multiple pairs at the same reference index |
---|
| 246 | if size(i2_series,3)>1 %pairs i1 -i2 |
---|
| 247 | diff_index=abs(i2_series-i1_series); |
---|
[353] | 248 | [tild,ind_pair]=sort(diff_index,3,'descend'); |
---|
[339] | 249 | for ref_i=1:size(i1_series,1) |
---|
| 250 | for ref_j=1:size(j1_series,2) |
---|
| 251 | i1_series(ref_i,ref_j,:)=i1_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 252 | i2_series(ref_i,ref_j,:)=i2_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 253 | if ~isempty(j1_series) |
---|
| 254 | j1_series(ref_i,ref_j,:)=j1_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 255 | end |
---|
| 256 | end |
---|
[334] | 257 | end |
---|
[339] | 258 | elseif size(j2_series,3)>1 %pairs j1 -j2 |
---|
| 259 | diff_index=abs(j2_series-j1_series); |
---|
[353] | 260 | [tild,ind_pair]=sort(diff_index,3,'descend'); |
---|
[339] | 261 | for ref_i=1:size(i1_series,1) |
---|
| 262 | for ref_j=1:size(j1_series,2) |
---|
| 263 | i1_series(ref_i,ref_j,:)=i1_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 264 | if ~isempty(i2_series) |
---|
| 265 | i2_series(ref_i,ref_j,:)=i2_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 266 | end |
---|
| 267 | j1_series(ref_i,ref_j,:)=j1_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 268 | j2_series(ref_i,ref_j,:)=j2_series(ref_i,ref_j,ind_pair(ref_i,ref_j,:)); |
---|
| 269 | end |
---|
| 270 | end |
---|
| 271 | end |
---|
| 272 | |
---|