python小工具
Posted Mario cai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python小工具相关的知识,希望对你有一定的参考价值。
将数组保存为TXT
np.savetxt("./result.txt", img_arr,fmt ='%d')
将数组保存为图片
import numpy as np
import matplotlib.pyplot as plt
x = np.array([[1, 2, 3], [4, 5, 6]], np.int32)
plt.imshow(x)
plt.savefig("array")
nii变RGB(先读取数组再成像再保存)
import nibabel as nib
import numpy as np
import os
import matplotlib.pyplot as plt
file = r'C:\\新建文件夹/mask/1.nii'
#filenames = os.listdir(file)
img = nib.load(file)
nii = img.dataobj
(x, y, z) = nii.shape
for i in range(0, 200):
#img_path = os.path.join(file, f)
img_arr = nii[:, i, :]
plt.imshow(img_arr)
plt.savefig('%d.png'%(i+1))
以上是关于python小工具的主要内容,如果未能解决你的问题,请参考以下文章