I am trying to convert the image that I read using cv2.imread which is store in numpy array to PIL Image object , the color of Image will be changed Here is the code
I=cv2.imread("Image.jpg")
PILImage=Image.fromarray(I,mode='RGB')
How can get back my original Image?