Thursday, October 9, 2025
HomeLanguagesConvert BGR and RGB with Python – OpenCV

Convert BGR and RGB with Python – OpenCV

Prerequisites: OpenCV

OpenCV is a huge open-source library for computer vision, machine learning, and image processing. OpenCV supports a wide variety of programming languages like Python, C++, Java, etc. It can process images and videos to identify objects, faces, or even the handwriting of a human. In this article, we will convert a BGR image to RGB with python and OpenCV.

OpenCV uses BGR image format. So, when we read an image using cv2.imread() it interprets in BGR format by default.

We can use cvtColor() method to convert a BGR image to RGB and vice-versa.

Syntax: cv2.cvtColor(code) 

Parameter:

  •  cv2.COLOR_BGR2RGB –  BGR image is converted to RGB.
  • cv2.COLOR_RGB2BGR –  RGB image is converted to BGR.

Converting a BGR image to RGB and vice versa can have several reasons, one of them being that several image processing libraries have different pixel orderings. 

Approach

  • Import module
  • Read image
  • Convert it using cvtColor()
  • Add wait key
  • Add destroy window mechanism

Image used: Apple

First, we will display the image as it is imported which means in BGR format.

Example:

Python3




import cv2
  
image = cv2.imread("/content/gfg.jpeg")
cv2.imshow('image',image)
cv2.waitKey(0)
cv2.destroyAllWindows()


Output:

Now to convert BGR to RGB implementation is given below.

Example:

Python3




import cv2
  
image = cv2.imread("/content/gfg.jpeg")
  
# converting BGR to RGB
image_rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
  
cv2.imshow('image', image_rgb)
cv2.waitKey(0)
cv2.destroyAllWindows()


Output:

RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6713 POSTS0 COMMENTS
Nicole Veronica
11876 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS