使用suit_vol(input,‘atlas’)可以计算SUIT标准图谱(34个解剖区)中的体积,但如果我想使用其他的小脑分区模板比如MDT10来计算对应分区的体积的话,应该使用哪个函数呢?
#已解决
Can I get information on lobular volumes from SUIT_lobuli_summarize?
I have isolated and normalized a set of images. I would love to get information volume information on the cerebellar lobules. Is this possible with SUIT_lobuli_summarize?
After you normalize into SUIT space, the lobules of different participants have (by definition) all the same volume. To get volume information back, there is one approach:
You could reslice the atlas into each individual space (using suit_reslice_inv).
suit_reslice_inv(‘Cerebellum-SUIT.nii’,‘mc__snc.mat’);
The resultant image can then be summarised for each subject by looping over subjects:
for s=1:num_subject
V=spm_vol();
X=spm_read_vols(V);
for l=1:num_lobules
Numvox(s,l) = length(find(X==l));
end;
end;