摘要: .nii格式的读取与保存 注意两种方式读取维度的差异 1.nibabel 读取 import nibabel as nib img = nib.load(path) print(img.shape) # (z,y,x) img_array = np.asarray(img.get_fdata()) 阅读全文
posted @ 2022-08-03 23:55 梅雨明夏 阅读(4057) 评论(0) 推荐(0) 编辑