画像の新規作成

2020/11/21

Python3.8.2, OpenCV4.4.0

import cv2
import numpy as np

height = 300
width = 400
img_white = np.ones((height, width, 3))*255

#表示
cv2.imshow('test',img_white)
cv2.waitKey(0)
cv2.destroyAllWindows()


黒画像の場合は

img_black = np.zeros((height, width, 3))