UKF Tractography uses an unscented Kalman filter to perform tractography. At each point on the fiber the most consistent direction is found as a mixture of previous estimates and of the local model.
It can tract fibers 1-, 2-, or 3-tensor methods which uses a mixture of Gaussian tensors. There are two methods: One limits the diffusion ellipsoids to a cylindrical shape (the second and third eigenvalue are assumed to be identical) and the other one uses a full tensor representation.
In [1]:
import nipype.interfaces.semtools.diffusion as ukf
In [23]:
from nipype.interfaces.semtools.diffusion import tractography
In [ ]:
import nipype
In [ ]:
import nipype.interfaces.semtools as tools
In [2]:
test = ukf.dtiestim(dwi_image = "Control258localeq.nii")
In [21]:
convert = ukf.DWIConvert()
convert.input_spec(allowLossyConversion=True, )
Out[21]:
In [18]:
convert.output_spec()
Out[18]:
In [ ]:
from nipype.interfaces.freesurfer import MRIConvert
In [22]:
import nipype.interfaces.freesurfer.MRIConvert
In [24]:
a = tractography.UKFTractography()
In [26]:
a.input_spec()
Out[26]:
In [ ]: