io.imread fails to read grayscale jpg image file correctly. Produces an image of just gray noise.
Receive this error: "Low image data range; displaying image with stretched contrast."
I have a stack of 20 almost identical images with the same dimensions, 1024 x 1280. Some display normally, but some just as gray noise. I've tried several read plugins and get the same result.
image = io.imread('Image_00019.jpg')
plt.imshow(image, cmap='gray')
Expected: image displayed normally.
Actual: image displayed is just gray noise.