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 [ ]:
import nipype
In [ ]:
import nipype.interfaces.semtools as tools
In [2]:
test = ukf.dtiestim(dwi_image = "Control258localeq.nii")
In [12]:
convert = ukf.DWIConvert("Control258localeq.nii")
convert.output_spec(outputVolume = File("Control258localeq.nrrd"))
Out[12]:
In [11]:
In [ ]: