Changeset 455 for trunk/src/series
- Timestamp:
- Jun 13, 2012, 6:26:26 PM (13 years ago)
- Location:
- trunk/src/series
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/check_data_files.m
r451 r455 87 87 NbSlice=Param.IndexRange.NbSlice; 88 88 end 89 nbview= size(i1_series,1);%number of input file series (lines in InputTable)90 nbfield_j=size(i1_series ,2); %nb of consecutive fields at each level(burst91 nbfield=nbfield_j*size(i1_series ,3); %total number of files or frames89 nbview=numel(i1_series);%number of input file series (lines in InputTable) 90 nbfield_j=size(i1_series{1},1); %nb of consecutive fields at each level(burst 91 nbfield=nbfield_j*size(i1_series{1},2); %total number of files or frames 92 92 nbfield_i=floor(nbfield/NbSlice);%total number of i indexes (adjusted to an integer number of slices) 93 93 nbfield=nbfield_i*nbfield_j; %total number of fields after adjustement … … 104 104 %% MAIN LOOP ON VIEWS (INPUT LINES) 105 105 for iview=1:nbview 106 if isequal(FileType{iview},'mmreader')||isequal(FileType{iview},'video') 107 info=aviinfo(filecell{iview,1}); 108 message{1}=info.Filename; 109 message{2}=info.FileModDate; 110 message{3}=[num2str(info.FramesPerSecond) ' frames/s ']; 111 message{4}=info.ImageType; 112 message{5}=[' compression' info.VideoCompression]; 113 message{6}=[ 'quality ' num2str(info.Quality)]; 106 if isequal(FileType{iview},'mmreader')||isequal(FileType{iview},'video')||isequal(FileType{iview},'multimage') 107 [tild,FileInfo]=get_file_type(filecell{iview,1}) 108 % info=aviinfo(filecell{iview,1}); 109 message{1}=filecell{iview,1};%info.Filename; 110 message{2}=FileInfo.FileModDate; 111 message{3}=[num2str(FileInfo.FramesPerSecond) ' frames/s ']; 112 message{4}=FileInfo.ImageType; 113 message{5}=[' compression' FileInfo.VideoCompression]; 114 message{6}=[ 'quality ' num2str(FileInfo.Quality)]; 114 115 Tabchar=message; 115 116 else -
trunk/src/series/sub_background.m
r454 r455 46 46 47 47 48 function GUI_config=sub_background (Param ,get_param)48 function GUI_config=sub_background (Param) 49 49 50 50 %% set the input elements needed on the GUI series when the action is selected in the menu ActionName … … 66 66 %% get input parameters, file names and indices 67 67 % BATCH case: read the xml file for batch case 68 if exist('get_param','var') && isequal(get_param,0) 69 checkrun=-1; %the function is just used to define to complement the input parameters 70 elseif ischar(Param) && ~isempty(find(regexp(Param,'.xml$'))) %batch mode 68 if ischar(Param) && ~isempty(find(regexp(Param,'.xml$'))) %batch mode 71 69 Param=xml2struct(Param); 72 70 checkrun=0; … … 165 163 166 164 %% set processing parameters 167 if checkrun ==-1165 if ~isfield(Param,'Specific') 168 166 prompt = {'volume scan mode (Yes/No)';'Number of images for the sliding background (MUST FIT IN COMPUTER MEMORY)';... 169 167 'the luminosity rank chosen to define the background (0.1=for dense particle seeding, 0.5 (median) for sparse particles'}; … … 203 201 GUI_config.CheckLevelTransform=strcmp(answer,'Yes'); 204 202 205 % return to BATCH mode206 if checkrun==-1203 % % return to BATCH mode 204 % if checkrun==-1 207 205 return %transfer to BATCH mode 208 end206 % end 209 207 else 210 208 GUI_config=Param.Specific;
Note: See TracChangeset
for help on using the changeset viewer.