Question
save image to be used as array 8 bit
Hi there,
I have to save 8 bit images with the following structure when converted to an array:
array([[[ 60, 124, 150, 255],
[ 60, 124, 150, 255],
[ 60, 124, 150, 255],
...,
But when I save as png 8 bit I obtain
array([[[115, 124, 67],
[118, 127, 70],
[122, 131, 76],
...,
Thank you!
