1 Star 0 Fork 241

张会祥/python-learn

forked from mktime/python-learn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dcm2jpg.py 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
内部项目 提交于 2024-07-05 17:29 . 读取影像学dcm格式文件
import pydicom
from PIL import Image
import numpy as np
import os
import sys
''' first: pip install pydicom matplotlib scipy '''
def dicom_file2jpg(infile, outfile):
# 读取DICOM文件
dicom_file = pydicom.read_file(infile)
info = {}
# 通过字典关键字来获取图像的数据元信息(当然也可以根据TAG号)
# 这里获取几种常用信息
info["PatientID"] = dicom_file.PatientID # 患者ID
info["PatientName"] = dicom_file.PatientName # 患者姓名
info["PatientAge"] = dicom_file.PatientAge # 患者年龄
info['PatientSex'] = dicom_file.PatientSex # 患者性别
info['StudyID'] = dicom_file.StudyID # 检查ID
info['StudyDate'] = dicom_file.StudyDate # 检查日期
info['StudyTime'] = dicom_file.StudyTime # 检查时间
info['InstitutionName'] = dicom_file.InstitutionName # 机构名称
info['Manufacturer'] = dicom_file.Manufacturer # 设备制造商
info['StudyDescription']=dicom_file.StudyDescription # 检查项目描述
print(info)
# 将DICOM数据转换为numpy数组
image_array = dicom_file.pixel_array
# 转换为8位图像
image_array = image_array - np.min(image_array)
image_array = image_array / np.max(image_array)
image_8bit = (image_array * 255).astype(np.uint8)
# 转换为PIL图像
image = Image.fromarray(image_8bit)
# 保存为JPEG
image.save(outfile)
def main(name):
fname = name[:-4]
outname = fname + '.jpg'
dicom_file2jpg(name, outname)
if __name__ == '__main__':
if len(sys.argv) < 2:
print('usage: python dicom_file2jpg.py dicom_filefile.dcm')
quit()
main(sys.argv[1])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/huixiangzhang/python-learn.git
git@gitee.com:huixiangzhang/python-learn.git
huixiangzhang
python-learn
python-learn
master

搜索帮助