我有一个矩阵m
填充如下(精简版)。你能帮我创建一个图像吗?这样我希望矩阵中的所有10
都有不同的颜色。
m = np.array([[ 1 0 .... -1 10], [ 10,0, ..... 0, 10] .... ]])
此矩阵的维度为x rows and y columns
。
为了简单起见,我不需要彩色图像。
import cv2
import numpy as np
img = np.random.randint(222, size=(100, 100,3))
gen = np.array(img ,dtype=np.uint8)
cv2.imshow('i',img)
cv2.waitKey(0)
cv2.destroyWindow('i')
答案 0 :(得分:0)
import cv2
import numpy as np
img = np.random.randint(222, size=(100, 100,3))
gen = np.array(img ,dtype=np.uint8)
cv2.imshow('i',gen)
cv2.waitKey(0)
cv2.destroyWindow('i')