DeprecationWarning: Starting with ImageIO v3 the behavior of this function will switch to that of iio.v3.imread. To keep the current behavior (and make this warning dissapear) use `import imageio.v2 as imageio` or call `imageio.v2.imread` directly.
时间: 2023-06-10 17:06:01 浏览: 1331
该警告表示使用的是 ImageIO 库的 v2 版本,但是它将从 v3 版本开始更改函数的行为。为了避免这个警告,可以使用 `import imageio.v2 as imageio` 或直接调用 `imageio.v2.imread` 函数来保持当前行为。如果您想使用新的行为,可以使用 ImageIO 的 v3 版本。
阅读全文