I am wanting to use python OpenCV for image processing. This is my original photo:
I used the code below to load and show that image:
path = r"G:\3Y_individualProject\farm_colormap1.jpg"
colormap1 = cv2.imread(path)
plt.imshow(colormap1)
plt.show()
But it outputs an image of a slightly different color than the original image like this:
Can someone tell me why there is such a difference? Thank you