在将 MRI 切片转换为 PNG 格式后,我尝试对其运行图形切割算法。我不断遇到以下问题:
Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers).
这甚至在设置 vmin
和 vmax
之后如下:
plt.imshow(out, vmin=0, vmax=255)
原文由 Ankita Shinde 发布,翻译遵循 CC BY-SA 4.0 许可协议
将图像投射到
np.uint8
缩放后[0, 255]
范围将消除此警告。它似乎是matplotlib
中的一个特性,正如 本期 所讨论的那样。