Need help convert numpy array image to image with full color I must use PIL because I will upload image to ftp server after this process done
Thank You
Need help convert numpy array image to image with full color I must use PIL because I will upload image to ftp server after this process done
Thank You
cv2
uses BGR, Image
uses RGB. So reverting the channel order would work
Image.fromarray(numpy_array[:,:,::-1].astype('uint8'))