mynschen

Results 2 comments of mynschen

@markbuckup thanks for asking. I'm facing a similar problem @sorenchr2011 thanks for pointing this out. Any simple solution to this issue you would recommend? I've tried some other interpolation methods...

I figured out that my pixel noises were generated using np.uint8(), which takes 0.0 as 255 (np.uint8(0.0)=255). A simple solution to this issue: rI = sitk.GetArrayFromImage(resultImage) rI = rI*(rI>0) +...