1 安装
http://pydicom.readthedocs.io/en/stable/getting_started.html
windows需要下载exe文件安装,linux直接命令安装即可
2 使用
https://pyscience.wordpress.com/2014/09/08/dicom-in-python-importing-medical-image-data-into-numpy-with-pydicom-and-vtk/
3 测试


# coding: utf-8

# In[66]:

import dicom


# In[67]:

plan = dicom.read_file('C:\\Users\\hx133330\\Documents\\Python Scripts\\digest_article\\brain_001.dcm')


# In[68]:

plan


# In[69]:

plan.PixelSpacing


# In[70]:

31.2500//0.859375


# In[71]:

cd digest_article/


# In[72]:

print plan.pixel_array[167][170]


# In[73]:

print plan.pixel_array


# In[74]:

import matplotlib.pyplot as plt


# In[75]:

plt.figure()


# In[76]:

plt.imshow(plan.pixel_array)


# In[77]:

plt.show()

效果图
这里写图片描述

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐