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命令之firewalld的用法

《Linux命令之firewalld的用法》:本文主要介绍Linux命令之firewalld的用法,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux命令之firewalld1、程序包2、启动firewalld3、配置文件4、firewalld规则定义的九大

Linux之计划任务和调度命令at/cron详解

《Linux之计划任务和调度命令at/cron详解》:本文主要介绍Linux之计划任务和调度命令at/cron的使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux计划任务和调度命令at/cron一、计划任务二、命令{at}介绍三、命令语法及功能 :at

Linux ls命令操作详解

《Linuxls命令操作详解》通过ls命令,我们可以查看指定目录下的文件和子目录,并结合不同的选项获取详细的文件信息,如权限、大小、修改时间等,:本文主要介绍Linuxls命令详解,需要的朋友可... 目录1. 命令简介2. 命令的基本语法和用法2.1 语法格式2.2 使用示例2.2.1 列出当前目录下的文

Spring Boot项目部署命令java -jar的各种参数及作用详解

《SpringBoot项目部署命令java-jar的各种参数及作用详解》:本文主要介绍SpringBoot项目部署命令java-jar的各种参数及作用的相关资料,包括设置内存大小、垃圾回收... 目录前言一、基础命令结构二、常见的 Java 命令参数1. 设置内存大小2. 配置垃圾回收器3. 配置线程栈大小

使用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