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

相关文章

使用Java实现通用树形结构构建工具类

《使用Java实现通用树形结构构建工具类》这篇文章主要为大家详细介绍了如何使用Java实现通用树形结构构建工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录完整代码一、设计思想与核心功能二、核心实现原理1. 数据结构准备阶段2. 循环依赖检测算法3. 树形结构构建4. 搜索子

利用Python开发Markdown表格结构转换为Excel工具

《利用Python开发Markdown表格结构转换为Excel工具》在数据管理和文档编写过程中,我们经常使用Markdown来记录表格数据,但它没有Excel使用方便,所以本文将使用Python编写一... 目录1.完整代码2. 项目概述3. 代码解析3.1 依赖库3.2 GUI 设计3.3 解析 Mark

Linux find 命令完全指南及核心用法

《Linuxfind命令完全指南及核心用法》find是Linux系统最强大的文件搜索工具,支持嵌套遍历、条件筛选、执行动作,下面给大家介绍Linuxfind命令完全指南,感兴趣的朋友一起看看吧... 目录一、基础搜索模式1. 按文件名搜索(精确/模糊匹配)2. 排除指定目录/文件二、根据文件类型筛选三、时间

使用mvn deploy命令上传jar包的实现

《使用mvndeploy命令上传jar包的实现》本文介绍了使用mvndeploy:deploy-file命令将本地仓库中的JAR包重新发布到Maven私服,文中通过示例代码介绍的非常详细,对大家的学... 目录一、背景二、环境三、配置nexus上传账号四、执行deploy命令上传包1. 首先需要把本地仓中要

Windows命令之tasklist命令用法详解(Windows查看进程)

《Windows命令之tasklist命令用法详解(Windows查看进程)》tasklist命令显示本地计算机或远程计算机上当前正在运行的进程列表,命令结合筛选器一起使用,可以按照我们的需求进行过滤... 目录命令帮助1、基本使用2、执行原理2.1、tasklist命令无法使用3、筛选器3.1、根据PID

Linux系统之authconfig命令的使用解读

《Linux系统之authconfig命令的使用解读》authconfig是一个用于配置Linux系统身份验证和账户管理设置的命令行工具,主要用于RedHat系列的Linux发行版,它提供了一系列选项... 目录linux authconfig命令的使用基本语法常用选项示例总结Linux authconfi

mysql通过frm和ibd文件恢复表_mysql5.7根据.frm和.ibd文件恢复表结构和数据

《mysql通过frm和ibd文件恢复表_mysql5.7根据.frm和.ibd文件恢复表结构和数据》文章主要介绍了如何从.frm和.ibd文件恢复MySQLInnoDB表结构和数据,需要的朋友可以参... 目录一、恢复表结构二、恢复表数据补充方法一、恢复表结构(从 .frm 文件)方法 1:使用 mysq

linux打包解压命令方式

《linux打包解压命令方式》文章介绍了Linux系统中常用的打包和解压命令,包括tar和zip,使用tar命令可以创建和解压tar格式的归档文件,使用zip命令可以创建和解压zip格式的压缩文件,每... 目录Lijavascriptnux 打包和解压命令打包命令解压命令总结linux 打包和解压命令打

Python中顺序结构和循环结构示例代码

《Python中顺序结构和循环结构示例代码》:本文主要介绍Python中的条件语句和循环语句,条件语句用于根据条件执行不同的代码块,循环语句用于重复执行一段代码,文章还详细说明了range函数的使... 目录一、条件语句(1)条件语句的定义(2)条件语句的语法(a)单分支 if(b)双分支 if-else(

使用Navicat工具比对两个数据库所有表结构的差异案例详解

《使用Navicat工具比对两个数据库所有表结构的差异案例详解》:本文主要介绍如何使用Navicat工具对比两个数据库test_old和test_new,并生成相应的DDLSQL语句,以便将te... 目录概要案例一、如图两个数据库test_old和test_new进行比较:二、开始比较总结概要公司存在多