SyntaxFix
Write A Post
Hire A Developer
Questions
If anyone else simply wants to display a black image as a background, here e.g. for 500x500 px:
import cv2 import numpy as np black_screen = np.zeros([500,500,3]) cv2.imshow("Simple_black", black_screen) cv2.waitKey(0)