我正在尝试在 matlab 上使用 MyRobustCrust 从 MNI 大脑模板创建线框 3d 模型。我的目标是能够确定皮质表面的 MNI 坐标。
为此,我遵循此站点上列出的说明:http ://soundsfromthenorth.com/?p=3
不幸的是,管理员似乎不再活跃。
按照网站的说明,我已成功从 FSL 中提取数据集(“MNI152_T1_2mm_brain_mask.nii”)。但是,当我去运行 MyRobustCrust 时,使用以下输入(按照站点的指示),我得到一个空白图表。
代码输入
>> [t,tnorm]=MyRobustCrust(p);
figure(1)
hold on
axis equal
h=trisurf(t,p(:,1),p(:,2),p(:,3),'facealpha',0.4,...
...'facecolor',[1 1 1],'edgecolor',[0.8 0.8 0.8]);
view(3);
axis vis3d
代码输出:
Added Shield: 0.0559 s
Delaunay Triangulation Time: 0.6515 s
Connectivity Time: 0.0796 s
Circumcenters Time: 0.0168 s
Warning: Brute continuation necessary
> In MyRobustCrust>Marking (line 380)
In MyRobustCrust (line 106)
Warning: 1000 th level was reached\n
> In MyRobustCrust>Marking (line 412)
In MyRobustCrust (line 106)
99.9941 % of Tetraedroms were checked
Walking Time: 0.2084 s
Manifold extraction Time: 0.3782 s
Total Time: 1.4809 s
view(3);
|
Error: Unbalanced or unexpected parenthesis or bracket.
不幸的是,我对神经影像学和 Matlab 非常陌生。有人对我在这里做错了什么有任何建议吗?错误信号是否表示 MyRobustCrust 的代码或数据中存在不平衡或意外的括号?