In preproc-sess, FSFAST uses the mc-afni script to perform motion correction, which in turn calls AFNI's 3dvolreg. The motion parameters are saved in an .mcdat file, which looks like this:
0 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0 0 0.000
1 -0.0131 0.0151 0.0122 0.0601 0.0098 0.0239 64.62 64.63 0.065
2 0.0224 0.0210 -0.0647 -0.0120 -0.0903 0.0410 30.56 30.14 0.100
3 -0.0351 0.0699 -0.0273 -0.0241 -0.1217 0.0269 63.69 63.43 0.127
...
I have providing these .mcdat files, along with the associated motion-corrected NIfTIs, to rapidart's ArtifactDetect:
afni_artdetect = pe.Node(
interface=ra.ArtifactDetect(parameter_source='AFNI',
mask_type='spm_global',
norm_threshold=1.0,
zintensity_threshold=3.0,
use_differences=[True, False]),
name='afni_artdetect')
This produces somewhat odd results:
To compare, I ran motion correction on SPM and ran through a similar
ArtifactDetect (with the parameter_source changed to 'SPM'):
--
---
You received this message because you are subscribed to the Google Groups "NiPy Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nipy-user+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Satra,
If it turns out the 3dvolreg doesn't simply produce columns 1-7 of FSFAST, I'll report back.
Chris