我想将 24 位 PNG 图像转换为 32 位,以便它可以显示在 LED 矩阵上。这是我使用的代码,但它将 24 位转换为 48 位
import cv2
import numpy as np
i = cv2.imread("bbb.png")
img = np.array(i, dtype = np.uint16)
img *= 256
cv2.imwrite('test.png', img)
DIEA
相关分类