前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python sitk.show()与imageJ结合使用常见的问题

python sitk.show()与imageJ结合使用常见的问题

作者头像
砸漏
发布2020-11-05 10:02:03
1.2K0
发布2020-11-05 10:02:03
举报
文章被收录于专栏:恩蓝脚本

在python中配置simpleITK时,遇到了以下这个问题。

simpleITK已经通过pip install安装,但是sitk.show()功能无法正常使用,类似如下

实例代码

代码语言:javascript
复制
import SimpleITK as sitk
import sys
import os
example = sitk.ReadImage("filename")
sitk.show(example)

在sitk.show()这一步会出现以下错误

“Traceback (most recent call last): File “”, line 1, in sitk.Show(image) File “C:\Python27\lib\site-packages\SimpleITK.py”, line 4158, in Show return _SimpleITK.Show(*args, **kwargs) RuntimeError: Exception thrown in SimpleITK Show: …………\Build\ITK\SimpleITK-0.7.1\Code\IO\src\sitkShow.cxx:463: sitk::ERROR: Error in administrating child process: [参数错误。]”

原因是SimpleITK的图像显示功能是通过类似ITK-snap,ImageJ进行实现的,所以在进行sitk.show()之前,需要对此进行设置才能正常实现。

这里参考stack overflow别人给的意见https://stackoverflow.com/questions/43215774/can-not-linksimpleitkshow-with-fiji

ImageJ Installation Go tohttps://imagej.nih.gov/ij/download.html Make sure to download thebundled with 64-bit Java 1.8.0_112version ImageJ Setup Go tohttps://imagej.nih.gov/ij/plugins/nifti.html Downloadnifti_io.jar Go toC:\blah\blah\ImageJ\plugins\Input-Output Delete the existingnifti_io.jarfile from the folder Copy the downloadednifti_io.jarfile into the folder Restart ImageJ and check ifFile – Import – NIfTI-Analyzeis there If it is there, the plugin was successfully installed SimpleITK Setup Find the path where yourImageJ.exefile exists Opencmd Type insetx SITK_SHOW_COMMAND “C:\blah\blah\ImageJ\ImageJ.exe” You should get the messageSUCCESS: Specified value was saved Check if everything works Restart your text editor or IDE (if it was already open) Run your code

​​​​​​除了下载ImageJ操作,另外的很简单。

  • 在环境变量里面添加SITK_SHOW_COMMAND ,以imageJ为例,路径指向ImageJ-win64.exe
  • 在环境变量中的path中添加%SITK_SHOW_COMMAND%

到此这篇关于python sitk.show()与imageJ结合使用常见的问题的文章就介绍到这了,更多相关sitk.show()结合imageJ内容请搜索ZaLou.Cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档