美文网首页医学影像
FreeSurfer使用(1)

FreeSurfer使用(1)

作者: 奥耶耶耶啊啊 | 来源:发表于2020-03-09 22:28 被阅读0次

下载数据:

curl https://surfer.nmr.mgh.harvard.edu/pub/data/tutorial_data.tar.gz -o tutorial_data.tar.gz
tar -xzvf tutorial_data.tar.gz

英文版FreeSurfer Tutorials:
http://surfer.nmr.mgh.harvard.edu/fswiki/Tutorials

每次处理图像之前,定义路径

export TUTORIAL_DATA=/Users/yourname/tutorial_data/
cd $TUTORIAL_DATA
export SUBJECTS_DIR=$TUTORIAL_DATA/buckner_data/tutorial_subjs
cd $SUBJECTS_DIR

load several output volumes, such as brainmask.mgz and wm.mgz; the surfaces, rh.white and lh.white; and the subcortical segmentation, aseg.mgz.

freeview -v \
good_output/mri/T1.mgz \
good_output/mri/wm.mgz \
good_output/mri/brainmask.mgz \
good_output/mri/aseg.mgz:colormap=lut:opacity=0.2 \
-f good_output/surf/lh.white:edgecolor=blue \
good_output/surf/lh.pial:edgecolor=red \
good_output/surf/rh.white:edgecolor=blue \
good_output/surf/rh.pial:edgecolor=red

Some notes on the above command line:

  • good_output is the name of the subject

  • The flag -v is used to open some of the most commonly used volumes including:

    • brainmask.mgz : skull-stripped volume primarily used for troubleshooting

    • wm.mgz : white matter mask also used for troubleshooting

    • aseg.mgz : subcortical segmentation loaded with its corresponding color table and at a low opacity. For more information on the subcortical segmentation, see here.

  • The flag -f is used to load surfaces

    • white & pial surfaces are loaded for each hemisphere & with color indicated by 'edgecolor'

结果应该如图:


截屏2020-03-0921.48.44.png

相关文章

  • FreeSurfer使用(1)

    下载数据: 英文版FreeSurfer Tutorials:http://surfer.nmr.mgh.harva...

  • FreeSurfer-Introduction

    【摘要】FreeSurfer - Cortical surface and subcortical modelli...

  • Mac安装FreeSurfer

    在https://surfer.nmr.mgh.harvard.edu/fswiki/MacOsInstall中下...

  • 2019-10-18

    Freesurfer学习笔记 GLM:General Linear Modal 一般线性模型:直线的构成:斜率(s...

  • FSL/FreeSurfer安装教程

    本简易教程分两部分:一部分基于Ubuntu 操作系统,另一部分基于Mac OS X操作系统。(注:本文仅供参考,由...

  • 在afni, suma和freesurfer中自定义colorb

    在写文章的过程中大脑的激活图,ROI的颜色等需要和文章的整体风格以及数据展示的颜色相匹配,这时候需要使用自定义的c...

  • git使用1

    一、测试有没安装 (1) 首先我们打开mac终端输入 (2) 如果终端告诉你 那么说明你已经有git了,不需下...

  • luastudio 使用1

    LuaStudio工具的使用 转载2016-05-02 17:37:46 标签:it 在手游开发中,如果要做代码的...

  • 1、wireshark使用

    1、下载安装2、启动抓包![Uploading image_045783.png . . .]途中列表是表示可以抓...

  • Sass使用(1)

    一个父级元素,如果只拥有两个子元素,使用sass赋予第二个子元素样式的时候,不能使用last-child,无效。应...

网友评论

    本文标题:FreeSurfer使用(1)

    本文链接:https://www.haomeiwen.com/subject/rlimdhtx.html