Exercise 1

1.Open the subject’s aparc+aseg.mgz volume with a colormap of “lut”.

首先可以在数据文件夹中找到aparc+aseg.mgz

路径:tutorial_data_20190918_1558/buckner_data/tutorial_subjs/group_analysis_tutorial/004/mri/aparc+aseg.mgz

freeview -v \group_analysis_tutorial/004/mri/aparc+aseg.mgz:colormap=lut

Freesurfer学习笔记——Introduction to Freesurfer Output(输出简介)-练习题

2.Swap the view to sagittal(将视图交换为矢状)

Freesurfer学习笔记——Introduction to Freesurfer Output(输出简介)-练习题

3.Navigate with the arrow keys to find the right putamen(使用箭头键导航以找到正确的脑壳)?

Exercise 2

1.Open 004’s lh.pial surface, with the overlay named lh.thickness, set the overlay to display with a threshold of 1,2

freeview -f group_analysis_tutorial/004/surf/lh.pial:overlay=lh.thickness:overlay_threshold=1,2 --viewport 3d

# 注意:如果第一行命令后没有加 “\” 就不能两行命令同时运行,会报错。

Freesurfer学习笔记——Introduction to Freesurfer Output(输出简介)-练习题

2.Look up vertex 141813(查找顶点141813)

Freesurfer学习笔记——Introduction to Freesurfer Output(输出简介)-练习题

3.What is the thickness and label of this vertex?(该顶点的厚度和标签是多少?)

Exercise 3 

freeview -v 004/mri/wm.mgz:colormap=jet 004/mri/brainmask.mgz -f 004/surf/lh.pial:edgecolor=blue 004/surf/lh.white:edgecolor=red 

Freesurfer学习笔记——Introduction to Freesurfer Output(输出简介)-练习题

1.Right now it only opens the left hemisphere pial and white matter surfaces, alter it to open both for the right hemisphere as well, with colors that match the left hemisphere side.

freeview -v 004/mri/brainmask.mgz 004/mri/wm.mgz:colormap=jet:opacity=.2 -f 004/surf/lh.pial:edgecolor=blue 004/surf/lh.white:edgecolor=red 004/surf/rh.pial:edgecolor=blue 004/surf/rh.white:edgecolor=red

Freesurfer学习笔记——Introduction to Freesurfer Output(输出简介)-练习题

Exercise 4

中级-熟悉Unix和FreeView导航

从FreeView导出一系列图像并将它们缝合在一起以创建GIF。

1.从数据集中打开一些surface

2.用3D视图方式,右键单击窗口选择“隐藏所有切片”

3.在菜单file中选择Save Movie Frames 

4.如图所示新建一个输出目录

5.在终端中,进入到输出目录里   

//注:报错cd: string not in pwd    原因是路径中存在空格,解决办法:去掉空格或者在空格前加个转义字符“ \” 

6.运行命令:convert -delay .1 *.png brainanim.gif 

//Note: convert is from the ImageMagick library,需要自己安装。

//-delay  determines the gap between frames,  *.png  selects all png files in the working directory,  brainanim.gif  is the output name.

7.用火狐浏览器打开生成的GIF:firefox brainanim.gif 

 

---------------------------------------------------

 

注:安装ImageMagick步骤:

1.下载XQuartz-2.7.11.dmg

2.安装安装homebrew:https://brew.sh/

3.

 

 

 

相关文章:

  • 2021-12-21
  • 2022-12-23
  • 2022-01-02
  • 2021-11-04
  • 2022-12-23
  • 2022-01-01
  • 2021-04-09
  • 2021-10-29
猜你喜欢
  • 2021-07-07
  • 2022-12-23
  • 2021-09-28
  • 2021-12-13
  • 2022-01-04
  • 2021-09-04
  • 2022-12-23
相关资源
相似解决方案