我是 ITK 的新手。我写了一个小程序来使用sitk读取图像并使用imageJ显示图像。
import os
import SimpleITK as sitk
pathDicom = 'C://Users//clouds.png'
input = sitk.ReadImage(pathDicom)
sitk.Show( input , debugOn=True)
要将 simpleITK 链接到 imageJ,我设置了环境变量。但是我收到了 sitk.Show() 的以下错误:
return _SimpleITK.Show(*args, **kwargs)
RuntimeError: Exception thrown in SimpleITK Show: C:\d\VS14-Win32-pkg\SimpleITK\Code\IO\src\sitkShow.cxx:580:
sitk::ERROR: Error in administrating child process: [Access is denied].
imageJ 输出如附图所示。有人可以告诉你有什么问题吗?