FSL之t1结构像预处理命令fsl_anat

2024-04-14 19:32
文章标签 命令 结构 预处理 t1 fsl anat

本文主要是介绍FSL之t1结构像预处理命令fsl_anat,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Pipeline主要步骤

The stages in the pipeline (in order) are:
1 reorient the images to the standard (MNI) orientation [fslreorient2std]
2 automatically crop the image [robustfov]
3 bias-field correction (RF/B1-inhomogeneity-correction) [FAST]
4 registration to standard space (linear and non-linear) [FLIRT and FNIRT]
5 brain-extraction [FNIRT-based or BET]
6 tissue-type segmentation [FAST]
7 subcortical structure segmentation [FIRST]

命令用法

Usage: fsl_anat [options] -i <structural image>fsl_anat [options] -d <existing anat directory>Arguments (You may specify one or more of):-i <strucural image>         filename of input image (for one image only)-d <anat dir>                directory name for existing .anat directory where this script will be run in place-o <output directory>        basename of directory for output (default is input image basename followed by .anat)--clobber                    if .anat directory exist (as specified by -o or default from -i) then delete it and make a new one--weakbias                   used for images with little and/or smooth bias fields--noreorient                 turn off step that does reorientation 2 standard (fslreorient2std)--nocrop                     turn off step that does automated cropping (robustfov)--nobias                     turn off steps that do bias field correction (via FAST)--noreg                      turn off steps that do registration to standard (FLIRT and FNIRT)--nononlinreg                turn off step that does non-linear registration (FNIRT)--noseg                      turn off step that does tissue-type segmentation (FAST)--nosubcortseg               turn off step that does sub-cortical segmentation (FIRST)-s <value>                   specify the value for bias field smoothing (the -l option in FAST)-t <type>                    specify the type of image (choose one of T1 T2 PD - default is T1)--nosearch                   specify that linear registration uses the -nosearch option (FLIRT)--betfparam                  specify f parameter for BET (only used if not running non-linear reg and also wanting brain extraction done)--nocleanup                  do not remove intermediate files

输出目录

与包含结构像的文件夹<dir_name>同目录下,建立添加名为<dir_name>.anat的文件夹,用来保存命令输出结果。

原始文件 :T1.nii.gz
旋转和剪切: T1_orig.nii.gz, T1_fullfov.nii.gz
Bias-correction: T1_biascorr.nii.gz
配准: T1_to_MNI_lin.nii.gz (linear registration output)
T1_to_MNI_nonlin.nii.gz (non-linear registration output)
去颅骨: T1_biascorr_brain.nii.gz, T1_biascorr_brain_mask.nii.gz;
分割: T1_fast_pve_0.nii.gz, T1_fast_pve_1.nii.gz, T1_fast_pve_2.nii.gz - partial volume segmentations (CSF, GM, WM respectively)
皮层下分割: T1_subcort_seg.nii.gz - summary image of all subcortical segmentations. All other outputs in the first_results subdirectory.

一个实例

fsl_anat --noreg --nononlinreg --betfparam=0.3 -i mai*.hdr -o ${Source_dir}/data

(资料来源 https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/fsl_anat)

这篇关于FSL之t1结构像预处理命令fsl_anat的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/903817

相关文章

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

关于Maven生命周期相关命令演示

《关于Maven生命周期相关命令演示》Maven的生命周期分为Clean、Default和Site三个主要阶段,每个阶段包含多个关键步骤,如清理、编译、测试、打包等,通过执行相应的Maven命令,可以... 目录1. Maven 生命周期概述1.1 Clean Lifecycle1.2 Default Li

windows系统下shutdown重启关机命令超详细教程

《windows系统下shutdown重启关机命令超详细教程》shutdown命令是一个强大的工具,允许你通过命令行快速完成关机、重启或注销操作,本文将为你详细解析shutdown命令的使用方法,并提... 目录一、shutdown 命令简介二、shutdown 命令的基本用法三、远程关机与重启四、实际应用

Java中switch-case结构的使用方法举例详解

《Java中switch-case结构的使用方法举例详解》:本文主要介绍Java中switch-case结构使用的相关资料,switch-case结构是Java中处理多个分支条件的一种有效方式,它... 目录前言一、switch-case结构的基本语法二、使用示例三、注意事项四、总结前言对于Java初学者

Linux使用nohup命令在后台运行脚本

《Linux使用nohup命令在后台运行脚本》在Linux或类Unix系统中,后台运行脚本是一项非常实用的技能,尤其适用于需要长时间运行的任务或服务,本文我们来看看如何使用nohup命令在后台... 目录nohup 命令简介基本用法输出重定向& 符号的作用后台进程的特点注意事项实际应用场景长时间运行的任务服

Redis的Hash类型及相关命令小结

《Redis的Hash类型及相关命令小结》edisHash是一种数据结构,用于存储字段和值的映射关系,本文就来介绍一下Redis的Hash类型及相关命令小结,具有一定的参考价值,感兴趣的可以了解一下... 目录HSETHGETHEXISTSHDELHKEYSHVALSHGETALLHMGETHLENHSET

结构体和联合体的区别及说明

《结构体和联合体的区别及说明》文章主要介绍了C语言中的结构体和联合体,结构体是一种自定义的复合数据类型,可以包含多个成员,每个成员可以是不同的数据类型,联合体是一种特殊的数据结构,可以在内存中共享同一... 目录结构体和联合体的区别1. 结构体(Struct)2. 联合体(Union)3. 联合体与结构体的

如何使用 Bash 脚本中的time命令来统计命令执行时间(中英双语)

《如何使用Bash脚本中的time命令来统计命令执行时间(中英双语)》本文介绍了如何在Bash脚本中使用`time`命令来测量命令执行时间,包括`real`、`user`和`sys`三个时间指标,... 使用 Bash 脚本中的 time 命令来统计命令执行时间在日常的开发和运维过程中,性能监控和优化是不

PHP执行php.exe -v命令报错的解决方案

《PHP执行php.exe-v命令报错的解决方案》:本文主要介绍PHP执行php.exe-v命令报错的解决方案,文中通过图文讲解的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下... 目录执行phpandroid.exe -v命令报错解决方案执行php.exe -v命令报错-PHP War

CentOS系统使用yum命令报错问题及解决

《CentOS系统使用yum命令报错问题及解决》文章主要讲述了在CentOS系统中使用yum命令时遇到的错误,并提供了个人解决方法,希望对大家有所帮助,并鼓励大家支持脚本之家... 目录Centos系统使用yum命令报错找到文件替换源文件为总结CentOS系统使用yum命令报错http://www.cppc