1 pydicom使用体验
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
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 年前
更多推荐
已为社区贡献10条内容
所有评论(0)