gpt4 book ai didi

python - 将 float 组保存到图像(使用 EXR 格式)

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:53 24 4
gpt4 key购买 nike

以下代码不起作用,它在将图像写入磁盘之前将值转换为 np.uint8。

import cv2
import numpy as np
# Generate dummy gradient with float values
arr = np.arange(0,10,0.02)
arr = np.repeat(arr, arr.shape[0])
arr.reshape((500,500))
cv2.imwrite('output.exr',arr)
# At this point, returns True. Opening the image with OpenEXR 1.4 shows values have become UINT8 instead of Float
arr = cv2.imread('output.exr')
# Shape is (1000, 1000, 3)
print(arr[10,10])
array([0, 0, 0], dtype=uint8) # All float data is lost

作为一点奖励,文档非常没有帮助

$ pydoc cv2.imwrite
Help on built-in function imwrite in cv2:

cv2.imwrite = imwrite(...)
imwrite(filename, img[, params]) -> retval

没有说参数应该是什么......

如何将具有浮点值的数组保存为 EXR 格式? (使用 OpenCV)

最佳答案

imageio可以保存任何数据格式的 EXR 文件,(它还支持大量其他图像格式)。

几乎是读写大多数图像的救命稻草:

import numpy as np
import imageio

# Generate dummy random image with float values
arr = np.random.uniform(0.0, 1.0, size=(500,500))

# freeimage lib only supports float32 not float64 arrays
arr = arr.astype("float32")

# Write to disk
imageio.imwrite('float_img.exr', arr)

# Read created exr from disk
img = imageio.imread('float_img.exr')

assert img.dtype == np.float32

关于python - 将 float 组保存到图像(使用 EXR 格式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45482307/

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