1 | initial version |
opencv uses numpy arrays in python, and so you have to have to use numpy, too, it's not optional. a simple
img = np.zeros((100,100,3), dtype=np.uint8)
should do the job
2 | No.2 Revision |
opencv uses numpy arrays in python, and so you have to have to use numpy, too, it's not optional. a simple
img = np.zeros((100,100,3), dtype=np.uint8)
should do the job
3 | No.3 Revision |
you can't.
opencv uses numpy arrays in python, and so you have to use numpy, too, it's not optional. a simple
img = np.zeros((100,100,3), dtype=np.uint8)
should do the job