Ignore:
Timestamp:
May 13, 2024, 9:49:09 PM (6 months ago)
Author:
sommeria
Message:

false flags modified in civ_series with new conventions, low pass filter adde to transform_field

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/extract_multitif.m

    r1129 r1144  
    7777    ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
    7878    ParamOut.WholeIndexRange='on';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
    79     ParamOut.NbSlice='off'; % impose calculation in a single process (no parallel processing to avoid 'holes'))
     79    ParamOut.NbSlice='on'; %
    8080    ParamOut.VelType='off';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
    8181    ParamOut.FieldName='off';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
     
    9191        first_j=[];% note that the function will propose to cover the whole range of indices
    9292    if isfield(Param.IndexRange,'MinIndex_j'); first_j=Param.IndexRange.MinIndex_j; end
    93     last_j=[];
    94     if isfield(Param.IndexRange,'MaxIndex_j'); last_j=Param.IndexRange.MaxIndex_j; end
     93% %     last_j=[];
     94% %     if isfield(Param.IndexRange,'MaxIndex_j'); last_j=Param.IndexRange.MaxIndex_j; end
    9595    PairString='';
    9696    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
     
    101101        msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
    102102    end
    103 
     103    ParamOut.NbSlice=Param.IndexRange.MaxIndex_i;
    104104    %% check the validity of  input file types
    105105    FileInfo=get_file_info(FirstFileName);
    106106    if ~strcmp(FileInfo.FileType,'multimage')
    107         msgbox_uvmat('ERROR',['invalid file type input: ' FileInfo.FileType ' not an image'])
     107        msgbox_uvmat('ERROR',['invalid file type input: ' FileInfo.FileType ' not a tiff image series'])
    108108        return
    109109    end
Note: See TracChangeset for help on using the changeset viewer.