我正在使用 macOS Sierra 10.12.6,尝试安装 SimpleITK 的 SimpleElastix 扩展。我一直按照这里的说明进行操作。在我让它工作之后,结果发现这个扩展似乎只包含在我使用 Python 2.7 时的 SimpleITK 中,而不是当我使用 Python 3.6 时,因为当我尝试时
import SimpleITK as sitk
resultImage = sitk.Elastix(sitk.ReadImage("fixedImage.nii"), sitk.ReadImage("movingImage.nii"))
我得到错误
AttributeError: module 'SimpleITK' has no attribute 'Elastix'
我找到了这个建议,但无法让它在我的 Mac 上运行。
感谢您的任何建议,
汤姆博士