I have an array in bytes, content is camera frame 480x640 x 2 bytes per pixel
raw = np.asarray (d.GetFrameData ( ), dtype=np.uint8)
print (raw, raw.shape, type(raw))`
print output is below, 614400=480x640x2, pixel value is 0~255
[0 0 0 ... 0 0 0] (614400,) <class 'numpy.ndarray'>
what's correct way to convert it into an array with 480x640 with pixel value from 0~65535 ?
Thx in advance
i tried to use dtype=np.uint16, but its shape is still (614400,)
reshape (640, 480, 2) is workable, but that's not what i need
i need a result in reshape (640, 480) with uint16 size
Thx @mechanic-pig If I replace the first line of your code to my frame data, it works