Changeset 711 for trunk/src/series
- Timestamp:
- Feb 18, 2014, 10:11:11 AM (11 years ago)
- Location:
- trunk/src/series
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/civ_input.m
r710 r711 87 87 NomTypeInput=Param.InputTable{1,4}; 88 88 FileExt=Param.InputTable{1,5}; 89 FileType=SeriesData.FileType{1};%type of the first input file series 90 FileInfo=SeriesData.FileInfo{1}; 89 if isfield(SeriesData,'FileType')&&isfield(SeriesData,'FileInfo') 90 FileType=SeriesData.FileType{1};%type of the first input file series 91 FileInfo=SeriesData.FileInfo{1}; 92 else 93 msgbox_uvmat('ERROR','please refresh the input file series') 94 return 95 end 91 96 92 97 … … 333 338 function errormsg=display_file_name(handles,fileinput) 334 339 %------------------------------------------------------------------------ 335 336 337 %% enable OK, BATCH button and 'status' display338 % set(handles.OK, 'Enable','On')339 % set(handles.OK,'BackgroundColor',[1 0 0])%set RUN button to red color340 % if isfield(handles,'status')341 % set(handles.status,'Value',0); %suppress the 'status' display342 % status_Callback([], [], handles)343 % end344 345 %% determine nomenclature types and extension of the input files346 % [RootPath,SubDir,Civ2_ImageB,i1,i2,j1,j2,ExtInput,NomTypeInput]=fileparts_uvmat(fileinput);347 % NomTypeNc='';%default348 349 350 340 351 341 %% scan the image file series -
trunk/src/series/civ_series.m
r707 r711 58 58 Data.Mask='off';%can use mask option (option 'off'/'on', 'off' by default) 59 59 Data.OutputDirExt='.civ';%set the output dir extension 60 Data.OutputSubDirMode='last'; %select the last subDir in the input table as root of the output subdir name (option 'all'/'first'/'last', 'all' by default) 60 61 Data.OutputFileMode='NbInput_i';% one output file expected per value of i index (used for waitbar) 61 62 filecell=get_file_series(Param);%check existence of the first input file
Note: See TracChangeset
for help on using the changeset viewer.