Home > database >  Load python list as opencv image
Load python list as opencv image

Time:03-20

I have a 2D python list named image, the array contain only integer in the range from 0-255. For example, the list is like this

image = [[0, 39, 57], [255, 182, 124], [19, 223, 200], [176, 190, 100]]

I have read enter image description here

  • Related