批量读取nii文件的shape

本文最后更新于:2023年4月7日 下午

import SimpleITK as sitk
from glob import glob
import os
path = glob(r"D:\MyData\date\*")
n = len(path)
res = []
for file in path:
    # print(file)
    file_name = os.path.join(os.path.join(file, "image"), "sample.nii")
    im = sitk.ReadImage(file_name)
    image = sitk.GetArrayFromImage(im)
    res.append(image.shape[0])
    print(image.shape)
print(sorted(res))

 


打赏支持
“如果你觉得我的文章不错,不妨鼓励我继续写作。”

批量读取nii文件的shape
https://dreamoneyou.github.io/2022/批量读取nii文件的shape/
作者
九叶草
发布于
2022年2月25日
更新于
2023年4月7日
许可协议