Home > vbmeg > functions > tool_box > dmri_processor > functions > process > dmri_process_fiber_tracking_execute.m

dmri_process_fiber_tracking_execute

PURPOSE ^

Fiber tracking operation

SYNOPSIS ^

function dmri_process_fiber_tracking_execute(p)

DESCRIPTION ^

 Fiber tracking operation

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function dmri_process_fiber_tracking_execute(p)
0002 % Fiber tracking operation
0003 %
0004 % Copyright (C) 2011, ATR All Rights Reserved.
0005 % License : New BSD License(see VBMEG_LICENSE.txt)
0006 
0007 disp(mfilename);
0008 
0009 %
0010 % --- Fiber tracking and create Anatomical Matrix
0011 %
0012 parcel_dir    = fullfile(p.output_dir, p.parcels_dirname);
0013 
0014 work_dir      = fullfile(p.output_dir, p.fiber_track_dirname);
0015 mif_file      = fullfile(work_dir, p.fiber_mif_file);
0016 mask_file     = fullfile(work_dir, p.fiber_mask_file);
0017 anatmat_file  = fullfile(work_dir, p.anat_matrix_file);
0018 
0019 
0020 % Fiber tracking hosts(Do not specify a host that runs this script.)
0021 % Available hosts
0022 % - cbi-node20-33
0023 % - cbi-node01g-08g
0024 % - cbi-node20g-23g
0025 process_host  = p.hosts;
0026 
0027 % The number of MATLAB processes which are used to process fiber tracking result files.
0028 Nworker       = p.Nworker;
0029 
0030 dmri_fiber_track_prob(mif_file, parcel_dir, mask_file, anatmat_file, process_host, Nworker);
0031

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005