gpt4 book ai didi

python - 使用 RGB 数据将输入数据剪切到 imshow 的有效范围([0..1] 表示 float 或 [0..255] 表示整数)

转载 作者:行者123 更新时间:2023-12-03 13:25:27 24 4
gpt4 key购买 nike

在将 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)

最佳答案

将图像转换到 np.uint8缩放后 [0, 255] range 将忽略此警告。这似乎是 matplotlib 中的一个功能,如本 issue 中所述.

plt.imshow((out * 255).astype(np.uint8))

关于python - 使用 RGB 数据将输入数据剪切到 imshow 的有效范围([0..1] 表示 float 或 [0..255] 表示整数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49643907/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com