[930] | 1 | %'ima2netcdf': read image series and transform to netcdf |
---|
| 2 | %------------------------------------------------------------------------ |
---|
| 3 | |
---|
| 4 | |
---|
| 5 | % function ParamOut=ima2netcdf(Param) |
---|
| 6 | % |
---|
| 7 | %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 8 | % |
---|
| 9 | %OUTPUT |
---|
| 10 | % ParamOut: sets options in the GUI series.fig needed for the function |
---|
| 11 | % |
---|
| 12 | %INPUT: |
---|
| 13 | % In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series. |
---|
| 14 | % In batch mode, Param is the name of the corresponding xml file containing the same information |
---|
| 15 | % when Param.Action.RUN=0 (as activated when the current Action is selected |
---|
| 16 | % in series), the function ouput paramOut set the activation of the needed GUI elements |
---|
| 17 | % |
---|
| 18 | % Param contains the elements:(use the menu bar command 'export/GUI config' in series to |
---|
| 19 | % see the current structure Param) |
---|
| 20 | % .InputTable: cell of input file names, (several lines for multiple input) |
---|
| 21 | % each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension} |
---|
| 22 | % .OutputSubDir: name of the subdirectory for data outputs |
---|
| 23 | % .OutputDirExt: directory extension for data outputs |
---|
| 24 | % .Action: .ActionName: name of the current activated function |
---|
| 25 | % .ActionPath: path of the current activated function |
---|
| 26 | % .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled Matlab fct |
---|
| 27 | % .RUN =0 for GUI input, =1 for function activation |
---|
| 28 | % .RunMode='local','background', 'cluster': type of function use |
---|
| 29 | % |
---|
| 30 | % .IndexRange: set the file or frame indices on which the action must be performed |
---|
| 31 | % .FieldTransform: .TransformName: name of the selected transform function |
---|
| 32 | % .TransformPath: path of the selected transform function |
---|
| 33 | % .InputFields: sub structure describing the input fields withfields |
---|
| 34 | % .FieldName: name(s) of the field |
---|
| 35 | % .VelType: velocity type |
---|
| 36 | % .FieldName_1: name of the second field in case of two input series |
---|
| 37 | % .VelType_1: velocity type of the second field in case of two input series |
---|
| 38 | % .Coord_y: name of y coordinate variable |
---|
| 39 | % .Coord_x: name of x coordinate variable |
---|
| 40 | % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) |
---|
| 41 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 42 | |
---|
| 43 | %======================================================================= |
---|
[977] | 44 | % Copyright 2008-2017, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France |
---|
[930] | 45 | % http://www.legi.grenoble-inp.fr |
---|
| 46 | % Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr |
---|
| 47 | % |
---|
| 48 | % This file is part of the toolbox UVMAT. |
---|
| 49 | % |
---|
| 50 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 51 | % it under the terms of the GNU General Public License as published |
---|
| 52 | % by the Free Software Foundation; either version 2 of the license, |
---|
| 53 | % or (at your option) any later version. |
---|
| 54 | % |
---|
| 55 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 56 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 57 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 58 | % GNU General Public License (see LICENSE.txt) for more details. |
---|
| 59 | %======================================================================= |
---|
| 60 | |
---|
[972] | 61 | function ParamOut=extract_multitif(Param) |
---|
[930] | 62 | |
---|
| 63 | %%%%%%%%%%%%%%%%% INPUT PREPARATION MODE (no RUN) %%%%%%%%%%%%%%%%% |
---|
| 64 | if isstruct(Param) && isequal(Param.Action.RUN,0) |
---|
| 65 | ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) |
---|
| 66 | ParamOut.WholeIndexRange='on';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) |
---|
[939] | 67 | ParamOut.NbSlice=1; % impose calculation in a single process (no parallel processing to avoid 'holes')) |
---|
[930] | 68 | ParamOut.VelType='off';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 69 | ParamOut.FieldName='off';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 70 | ParamOut.FieldTransform = 'off';%can use a transform function |
---|
| 71 | ParamOut.ProjObject='off';%can use projection object(option 'off'/'on', |
---|
| 72 | ParamOut.Mask='off';%can use mask option (option 'off'/'on', 'off' by default) |
---|
| 73 | ParamOut.OutputDirExt='.png';%set the output dir extension |
---|
| 74 | ParamOut.OutputFileMode='NbSlice';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice |
---|
[972] | 75 | ParamOut.CheckOverwriteVisible='on'; % manage the overwrite of existing files (default=1) |
---|
[930] | 76 | %% root input file(s) and type |
---|
| 77 | % check the existence of the first file in the series |
---|
| 78 | first_j=[];% note that the function will propose to cover the whole range of indices |
---|
| 79 | if isfield(Param.IndexRange,'MinIndex_j'); first_j=Param.IndexRange.MinIndex_j; end |
---|
| 80 | last_j=[]; |
---|
| 81 | if isfield(Param.IndexRange,'MaxIndex_j'); last_j=Param.IndexRange.MaxIndex_j; end |
---|
| 82 | PairString=''; |
---|
| 83 | if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end |
---|
| 84 | [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString); |
---|
| 85 | FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},... |
---|
| 86 | Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2); |
---|
| 87 | if ~exist(FirstFileName,'file') |
---|
| 88 | msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist']) |
---|
| 89 | end |
---|
| 90 | |
---|
| 91 | %% check the validity of input file types |
---|
| 92 | FileInfo=get_file_info(FirstFileName); |
---|
[939] | 93 | if ~strcmp(FileInfo.FileType,'multimage') |
---|
| 94 | msgbox_uvmat('ERROR',['invalid file type input: ' FileInfo.FileType ' not an image']) |
---|
[930] | 95 | return |
---|
| 96 | end |
---|
[939] | 97 | xmlinput=uigetfile_uvmat('pick xml file for timing',fileparts(fileparts(FirstFileName)),'.xml'); |
---|
| 98 | [tild,ParamOut.ActionInput.XmlFile]=fileparts(xmlinput); |
---|
| 99 | ParamOut.ActionInput.XmlFile |
---|
[930] | 100 | |
---|
| 101 | return |
---|
| 102 | end |
---|
| 103 | %%%%%%%%%%%%%%%%% STOP HERE FOR PAMETER INPUT MODE %%%%%%%%%%%%%%%%% |
---|
| 104 | |
---|
| 105 | %% read input parameters from an xml file if input is a file name (batch mode) |
---|
| 106 | checkrun=1; |
---|
| 107 | RUNHandle=[]; |
---|
| 108 | WaitbarHandle=[]; |
---|
| 109 | if ischar(Param) |
---|
| 110 | Param=xml2struct(Param);% read Param as input file (batch case) |
---|
| 111 | checkrun=0; |
---|
| 112 | else |
---|
| 113 | hseries=findobj(allchild(0),'Tag','series'); |
---|
| 114 | RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series |
---|
| 115 | WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series |
---|
| 116 | end |
---|
| 117 | |
---|
| 118 | %% list of input images |
---|
| 119 | DirImages=fullfile(Param.InputTable{1,1},Param.InputTable{1,2}); |
---|
| 120 | ListStruct=dir(DirImages); |
---|
| 121 | ListCells=struct2cell(ListStruct);% transform dir struct to a cell arrray |
---|
| 122 | check_bad=strcmp('.',ListCells(1,:))|strcmp('..',ListCells(1,:));%detect the dir '.' to exclude it |
---|
| 123 | check_dir=cell2mat(ListCells(4,:));% =1 for directories, =0 for files |
---|
| 124 | ListFile=ListCells(1,find(~check_dir & ~check_bad)); |
---|
| 125 | |
---|
[939] | 126 | %% check file names |
---|
| 127 | RootName=regexprep(ListFile{1},'.tif$','') |
---|
| 128 | for ilist=2:numel(ListFile) |
---|
| 129 | rank=regexprep(ListFile{ilist},'.tif$',''); |
---|
| 130 | rank=regexprep(rank,['^' RootName '@'],''); |
---|
| 131 | if ~isequal(str2num(rank),ilist-1) |
---|
[971] | 132 | disp(['error in the list of input file # ' num2str(ilist-1)]) |
---|
[939] | 133 | return |
---|
| 134 | end |
---|
| 135 | end |
---|
| 136 | |
---|
| 137 | %% output directory |
---|
[930] | 138 | OutputDir=fullfile(Param.InputTable{1,1},[Param.OutputSubDir Param.OutputDirExt]); |
---|
| 139 | |
---|
[939] | 140 | %% Timing |
---|
| 141 | XmlInputFile=fullfile(Param.InputTable{1,1},[Param.ActionInput.XmlFile '.xml']) |
---|
| 142 | XmlInput=imadoc2struct(XmlInputFile,'Camera'); |
---|
[930] | 143 | |
---|
| 144 | %% Main loop |
---|
[939] | 145 | |
---|
| 146 | ImagesPerLevel=size(XmlInput.Time,2)-1;%100; |
---|
[930] | 147 | count=0; |
---|
[931] | 148 | %count=316;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%CORRECTION EXP08: 4684 images -> start at 316 start 67->_11_1 |
---|
| 149 | %count=1934%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%CORRECTION EXP07: 3066 images |
---|
[972] | 150 | %% loop on the files |
---|
[930] | 151 | for ifile=1:numel(ListFile) |
---|
| 152 | update_waitbar(WaitbarHandle,ifile/numel(ListFile)) |
---|
| 153 | if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue') |
---|
| 154 | disp('program stopped by user') |
---|
| 155 | break |
---|
| 156 | end |
---|
| 157 | ImageName=fullfile(DirImages,ListFile{ifile}); |
---|
| 158 | NbFrames=numel(imfinfo(ImageName)); |
---|
| 159 | % loop on the frames within the tiff file |
---|
[972] | 160 | for iframe=1:NbFrames |
---|
| 161 | if isequal(ImagesPerLevel,1)% mode series |
---|
[939] | 162 | i_index=count+1; |
---|
[931] | 163 | OutputFile=fullfile(OutputDir,['img_' num2str(count+1) '.png']); |
---|
[972] | 164 | else % indices i and j |
---|
[930] | 165 | i_index=fix(count/ImagesPerLevel)+1; |
---|
| 166 | j_index=mod(count,ImagesPerLevel)+1; |
---|
| 167 | OutputFile=fullfile(OutputDir,['img_' num2str(i_index) '_' num2str(j_index) '.png']); |
---|
| 168 | end |
---|
[972] | 169 | if Param.CheckOverwrite ||~exist(OutputFile,'file') |
---|
| 170 | A=imread(ImageName,iframe); |
---|
| 171 | imwrite(A,OutputFile,'BitDepth',16); |
---|
| 172 | disp([OutputFile ' written']) |
---|
| 173 | else |
---|
| 174 | disp([OutputFile ' already exists']) |
---|
| 175 | end |
---|
[931] | 176 | count=count+1; |
---|
[930] | 177 | end |
---|
| 178 | end |
---|
| 179 | |
---|
[972] | 180 | % for ifile=1:numel(ListFile) |
---|
| 181 | % update_waitbar(WaitbarHandle,ifile/numel(ListFile)) |
---|
| 182 | % if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue') |
---|
| 183 | % disp('program stopped by user') |
---|
| 184 | % break |
---|
| 185 | % end |
---|
| 186 | % ImageName=fullfile(DirImages,ListFile{ifile}); |
---|
| 187 | % NbFrames=numel(imfinfo(ImageName)); |
---|
| 188 | % % loop on the frames within the tiff file |
---|
| 189 | % for iframe=1:NbFrames |
---|
| 190 | % A=imread(ImageName,iframe); |
---|
| 191 | % |
---|
| 192 | % if isequal(ImagesPerLevel,1)% mode series |
---|
| 193 | % i_index=count+1; |
---|
| 194 | % OutputFile=fullfile(OutputDir,['img_' num2str(count+1) '.png']); |
---|
| 195 | % else % indices i and j |
---|
| 196 | % i_index=fix(count/ImagesPerLevel)+1; |
---|
| 197 | % j_index=mod(count,ImagesPerLevel)+1; |
---|
| 198 | % OutputFile=fullfile(OutputDir,['img_' num2str(i_index) '_' num2str(j_index) '.png']); |
---|
| 199 | % end |
---|
| 200 | % imwrite(A,OutputFile,'BitDepth',16) |
---|
| 201 | % count=count+1; |
---|
| 202 | % end |
---|
| 203 | % end |
---|
| 204 | |
---|
[939] | 205 | %% create the xml file of PCO camera |
---|
| 206 | XmlInput.Camera.CameraName='PCO'; |
---|
| 207 | t=struct2xml(XmlInput.Camera); |
---|
| 208 | t=set(t,1,'name','ImaDoc'); |
---|
[971] | 209 | save(t,fullfile(Param.InputTable{1,1},'PCO.xml')) |
---|
[930] | 210 | |
---|
[939] | 211 | %% remove initial files if transfer OK |
---|
[972] | 212 | % if i_index== (size(XmlInput.Time,1)-1) |
---|
| 213 | % |
---|
| 214 | % [SUCCESS,MESSAGE]=rmdir(DirImages,'s') |
---|
| 215 | % |
---|
| 216 | % end |
---|