VOOZH about

URL: https://www.geeksforgeeks.org/machine-learning/introduction-to-opencv/

⇱ Introduction to OpenCV - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Introduction to OpenCV

Last Updated : 12 Jul, 2025

OpenCV is one of the most popular computer vision libraries. If you want to start your journey in the field of computer vision, then a thorough understanding of the concepts of OpenCV is of paramount importance. 

In this article, to understand the basic functionalities of Python OpenCV module, we will cover the most basic and important concepts of OpenCV intuitively:

  1. Reading an image
  2. Extracting the RGB values of a pixel
  3. Extracting the Region of Interest (ROI)
  4. Resizing the Image
  5. Rotating the Image
  6. Drawing a Rectangle
  7. Displaying text

This is the original image that we will manipulate throughout the course of this article. 

πŸ‘ road(1)

Let’s start with the simple task of reading an image using OpenCV. 

For the implementation, we need to install the OpenCV library using the following command:

pip install opencv-python

Reading an Image

First of all, we will import cv2 module and then read the input image using cv2’s imread() method. Then extract the height and width of the image.

Output:

Height = 1603, Width = 2400

Extracting the RGB Values of a Pixel

Now we will focus on extracting the RGB values of an individual pixel. OpenCV arranges the channels in BGR order. So the 0th value will correspond to the Blue pixel and not the Red. 

Output:

R = 211, G = 172, B = 165B = 165

Extracting the Region of Interest (ROI)

Sometimes we want to extract a particular part or region of an image. This can be done by slicing the pixels of the image.

Output:

πŸ‘ Screenshot-2023-05-10-154330-min

Resizing the Image

We can also resize an image in Python using resize() function of the cv2 module and pass the input image and resize pixel value.

Output:

πŸ‘ Screenshot-2023-05-10-155422

The problem with this approach is that the aspect ratio of the image is not maintained. So we need to do some extra work in order to maintain a proper aspect ratio.

Output:

πŸ‘ Rotation1

Drawing a Rectangle

We can draw a rectangle on the image using rectangle() method. It takes in 5 arguments: 

  • Image 
  • Top-left corner co-ordinates
  • Bottom-right corner co-ordinates
  • Color (in BGR format)
  • Line width

Output:

πŸ‘ rectangle3

Displaying text

It is also an in-place operation that can be done using the putText() method of OpenCV module. It takes in 7 arguments:

  • Image
  • Text to be displayed
  • Bottom-left corner co-ordinates, from where the text should start
  • Font
  • Font size
  • Color (BGR format)
  • Line width

Output:

πŸ‘ Text_screenshot_24082019


Comment