Laterality issue on fMRI image
The laterality issue: different software will interpret fMRI images in different way (mainly refer to right/left side display), so will the functions offered by them. NIFTI toolbox provides series explanations on the issued. Here are some notes.
Definition of LEFT and RIGHT
If the display does not have labels, we define LEFT as the Left-Hand-Side
of the Axial view, and RIGHT as the Right-Hand-Side of the Axial view.
RAS (neurological convention): left cerebral hemisphere is at LEFT and
right cerebral hemisphere is at RIGHT;
LAS (radiological convention): right cerebral hemisphere is at LEFT and
left cerebral hemisphere is at RIGHT;
If the display has labels, note will be added to bring your attention.
Laterality case in common softwares
| Software | Input format | Input laterality | Input display | Output format | Output laterality |
|---|---|---|---|---|---|
| SPM5/later | ANALYZE | RAS | LAS | NIfTI | LAS |
| SPM5/later | ANALYZE | LAS | RAS | NIfTI | RAS |
| MRIcro | ANALYZE | RAS | RAS | ANALYZE | RAS |
| MRIcro | ANALYZE | LAS | LAS | ANALYZE | LAS |
| MRIcron | ANALYZE | RAS | RAS | NIfTI | RAS |
| MRIcron | ANALYZE | LAS | LAS | NIfTI | LAS |
| load/save/view_nii | ANALYZE | RAS | RAS | NIfTI | RAS |
| load/save/view_nii | ANALYZE | LAS | LAS | NIfTI | LAS |
| load/save_untouch_nii | ANALYZE | RAS | N/A | ANALYZE | RAS |
| load/save_untouch_nii | ANALYZE | LAS | N/A | ANALYZE | LAS |
Interpret laterality using load_nii command
- NIfTI toolbox never saves any file with sform = qform = 0. When you see that sform = qform = 0 in the structure that is loaded by "load_nii.m", it only means that the affine matrix has been properly interpreted. As a matter of fact, the file written by "save_nii.m" is always a NIfTI file with sform = 1 and qform = 0, and you can always check the real header information stored in any NIfTI (ANALYZE) file by using "load_untouch_nii.m". In other words, you can never save your data to a NIfTI file with sform = qform = 0.
If you want to save your data to an ANALYZE format, you can do so by using "save_untouch_nii.m". In that case, there is neither sform nor qform in the
ANALYZE header. - Many other software assume that ANALYZE files are in neurological convention (RAS). Because there is really no orientation information stored in ANALYZE header, the laterality of an ANALYZE file is all based on the assumption.
Laterality issue on fMRI image的更多相关文章
- Android Weekly Notes Issue #237
Android Weekly Issue #237 December 25th, 2016 Android Weekly Issue #237 这是本年的最后一篇issue, 感谢大家. 本期内容包括 ...
- Android Weekly Notes Issue #236
Android Weekly Issue #236 December 18th, 2016 Android Weekly Issue #236 本期内容包括: Google的物联网平台Android ...
- Android Weekly Notes Issue #235
Android Weekly Issue #235 December 11th, 2016 Android Weekly Issue #235 本期内容包括: 开发一个自定义View并发布为开源库的完 ...
- Android Weekly Notes Issue #234
Android Weekly Issue #234 December 4th, 2016 Android Weekly Issue #234 本期内容包括: ConstraintLayout的使用; ...
- Android Weekly Notes Issue #231
Android Weekly Issue #231 November 13th, 2016 Android Weekly Issue #231 Android Weekly阅读笔记, Issue #2 ...
- Android Weekly Notes Issue #233
Android Weekly Issue #233 November 27th, 2016 Android Weekly Issue #233 本期内容包括: 用Mockito做RxJava的单元测试 ...
- Android Weekly Notes Issue #232
Android Weekly Issue #232 November 20th, 2016 Android Weekly Issue #232 本期内容包括: Kotlin的优势讨论; MVVM模式结 ...
- Android Weekly Notes Issue #230
Android Weekly Notes Issue #230 November 6th, 2016 Android Weekly Issue #230. Android Weekly笔记, 本期内容 ...
- Android Weekly Notes Issue #229
Android Weekly Issue #229 October 30th, 2016 Android Weekly Issue #229 Android Weekly笔记, 本期内容包括: 性能库 ...
随机推荐
- Android 加载大图片到内存
本文演示android中图片加载到内存 首先设计界面: 代码如下: <LinearLayout xmlns:android="http://schemas.android.com/ap ...
- Android 获取系统的联系人
本文主要介绍android中怎样获取系统的联系人数据 首先打开模拟器 点击联系人图标按钮 说明系统联系人数据库是空的,打开File explorer,找到data/data下面的文件夹: 将conta ...
- 深入.net(数据类型)
C#究竟为我们提供了哪些“数据类型”供我们使用?这些类型有什么样的“特征”? 数据类型的分类: --- 数据类型是存放数据的容器.那么我们就以它们“存放数据的方式”分类! 1.值类型:变量中直接存放着 ...
- UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlert
UIAlertController * cancleAlertController = [UIAlertController alertControllerWithTitle:nil message: ...
- MJRefresh下拉刷新框架
github下载地址:https://github.com/CoderMJLee/MJRefresh MJRefresh类结构图 self.userTableView.mj_footer = [MJR ...
- Jquery mobile 中在列表项上使用单选按钮
无意中发现可以在li上实现开关按钮 http://jsfiddle.net/Gajotres/pzfr2/ 触类旁通,终于实现了在li上增加单选按钮组 @mod ...
- 一个简单的Servlet容器实现
上篇写了一个简单的Java web服务器实现,只能处理一些静态资源的请求,本篇文章实现的Servlet容器基于前面的服务器做了个小改造,增加了Servlet请求的处理. 程序执行步骤 创建一个Serv ...
- Java内存泄露简述
Java的一个最显著的优势是内存管理.你只需要简单的创建对象而不需要负责释放空间,因为Java的垃圾回收器会负责内存的回收.然而,情况并不是这样简单,内存泄露还是经常会在Java应用程序中出现. 本篇 ...
- [20140928]创建连接到MySQL的连接服务器
首先要安装 mysql odbc 然后 odbc下创建DSN,并且要在系统DSN下. 最后执行 exec sp_addlinkedserver @server= 'XY', --这是链 ...
- Kafka 分布式的,基于发布/订阅的消息系统
Kafka是一种分布式的,基于发布/订阅的消息系统.主要设计目标如下: 通过O(1)的磁盘数据结构提供消息的持久化,这种结构对于即使数以TB的消息存储也能够保持长时间的稳定性能. 高吞吐量:即使是非常 ...