OpenCV - 隨機每一個通道的值生成圖像 (RGBA/RGB)

import cv2 import numpy as np import matplotlib.pyplot as plt if __name__ == "__main__": img_1 = np.random.rand(1000,1400,4) #RGBA img_2 = np.random.rand(1000,1400,3) #RGB plt.figure
相關文章
相關標籤/搜索