You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you install pip itk package with itk>5.3 and install itk-morphologicalcontourinterpolation 1.1.0 then your python code will exit without completing or any exception thrown when the itk.morphological_contour_interpolator function is called.
Can be tested using a virtual environment with (I've only tested with python==3.10):
pip install itk==5.4
pip install itk-morphologicalcontourinterpolation
When running the code below the program will exit at line:
If you install pip itk package with itk>5.3 and install itk-morphologicalcontourinterpolation 1.1.0 then your python code will exit without completing or any exception thrown when the itk.morphological_contour_interpolator function is called.
Can be tested using a virtual environment with (I've only tested with python==3.10):
pip install itk==5.4
pip install itk-morphologicalcontourinterpolation
When running the code below the program will exit at line:
itk_interp = itk.morphological_contour_interpolator(itk_im)
and print('finished') will not be reached, if you revert to itk==5.3 it works.
Example python code:
The text was updated successfully, but these errors were encountered: