.img/.hdr格式转.nii格式的操作
作者:咸鱼酱 时间:2023-08-25 04:56:14
MATLAB转格式,需要使用spm package(https://github.com/neurodebian/spm12).
%%img2nii.m--------------------------------------------
%Script to convert hdr/img files to nii.
%This script uses SPM function, so you need to install SPM5 or later.
%Kiyotaka Nemoto 05-Nov-2014
%select files
f = spm_select(Inf,'img$','Select img files to be converted');
%convert img files to nii
for i=1:size(f,1)
input = deblank(f(i,:));
[pathstr,fname,ext] = fileparts(input);
output = strcat(fname,'.nii');
V=spm_vol(input);
ima=spm_read_vols(V);
V.fname=output;
spm_write_vol(V,ima);
end
附加一下volume data是如何转surface data的吧…
wb_command -volume-to-surface-mapping ArticParcels_Smithetal.nii /home/murphyhuang/tmp/nii/HCP_fMRI/Q1-Q6_R440.L.flat.32k_fs_LR.surf.gii outL.shape.gii -trilinear
补充知识:数据读取——(.img .hdr)
1、定义
该图像格式含有两部分:一个是图像 ‘.img ',另一个是图像头文件 '.hdr',该文件记录了图像的信息,如图像尺寸、波段数、数据类型和大小端等。如果缺少头文件,将无法对图像进行读取,因此头文件十分重要。
2、读取
使用Matlab中NifTi包读取。
eg:
img=load_nii(‘D:\a01_101_bmask.hdr')
来源:https://blog.csdn.net/Lyrassongs/article/details/88544903
标签:.img,.hdr,.nii
0
投稿
猜你喜欢
table 行转列的sql详解
2024-01-27 00:44:57
python定时器(Timer)用法简单实例
2021-01-10 15:43:04
Python中的复杂数据类型(list、tuple)
2023-06-07 10:10:19
CentOS7离线安装MySQL的教程详解
2024-01-20 13:07:33
Flask蓝图学习教程
2023-03-02 04:19:15
python实现简易数码时钟
2023-09-20 12:32:57
简单的自定义php模板引擎
2023-11-24 02:44:24
vue2.0 可折叠列表 v-for循环展示的实例
2024-04-28 09:32:22
SQL Server 数据文件收缩和查看收缩进度的步骤
2024-01-12 19:34:03
利用Golang生成整数随机数方法示例
2024-05-08 10:22:58
vue和react等项目中更简单的实现展开收起更多等效果示例
2024-05-29 22:47:35
Python 爬虫学习笔记之单线程爬虫
2021-09-23 10:47:27
MySQL数据库之数据表操作
2024-01-19 18:01:40
ProC 连接Oracle代码
2009-06-10 18:12:00
SQL server高并发生成唯一订单号的方法实现
2024-01-21 21:24:55
解决vue2.x中数据渲染以及vuex缓存的问题
2023-07-02 16:59:24
python 模拟网站登录——滑块验证码的识别
2023-04-17 16:16:29
python GUI框架pyqt5 对图片进行流式布局的方法(瀑布流flowlayout)
2022-07-07 17:14:01
跟老齐学Python之for循环语句
2021-12-22 04:52:50
Golang 内存管理简单技巧详解
2023-06-24 22:38:18