You can convert an image from BGR to RGB using OpenCV Python by following the given steps. I highly recommend you get the “Computer Vision: Models, Learning, and Inference Book” to learn Computer Vision.
Step 1
Import the OpenCV library. If OpenCV is not installed in your system then first install it using This Method.
import cv2 #cv2 is used for OpenCV library
Step 2
Now read the image from the location. In my case “F:\\AiHints” is the location and “apple.jpg” is the name of the image. Change it according to your image location and name.
image = cv2.imread("C://AiHints//apple.jpg") #imread is use to read an image from a location
Step 3
Now convert the BGR image into RGB.
RGB_image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
Step 4
Now display the BGR, and RGB image using the following code.
cv2.imshow("BGR Image", image) cv2.imshow("RGB Image", RGB_image)
Step 5
waitKey() open the image for a specific time in milliseconds until you press any key. The function cv2.destroyAllWindows() will destroy all the windows that we created.
cv2.waitKey(0) cv2.destroyAllWindows()