I am new in ITK. I wrote a small program to read image using sitk and display the image using imageJ.
import os
import SimpleITK as sitk
pathDicom = 'C://Users//clouds.png'
input = sitk.ReadImage(pathDicom)
sitk.Show( input , debugOn=True)
To link simpleITK to imageJ I set the environment variable. But I am getting following error for 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 output is shown in the attached figure. Can someone tell what's the problem?