Prerequisite : Basics of OpenCV
In this article we’ll try to open an image by using OpenCV (Open Source Computer Vision). Some external libraries such as numpy and matplotlib will also be used to get our task done.
Inorder to do this, some external libraries are required to install :
pip install opencv-python pip install numpy pip install matplotlib
Input Image :

Example #1 (Using Numpy) :
# Python code to reading an image using OpenCV import numpy as np import cv2 # You can give path to the # image as first argument img = cv2.imread('cc.jpg', 0) # will show the image in a window cv2.imshow('image', img) k = cv2.waitKey(0) & 0xFF # wait for ESC key to exit if k == 27: cv2.destroyAllWindows() # wait for 's' key to save and exit elif k == ord('s'): cv2.imwrite('messigray.png',img) cv2.destroyAllWindows() |
chevron_right
filter_none
Example #2 (Using Matplotlib):
# Python code to reading an image using OpenCV import cv2 import numpy as np import matplotlib.pyplot as plt img = cv2.imread('photo.jpg', cv2.IMREAD_GRAYSCALE) cv2.imshow('image', img) cv2.waitKey(0) cv2.destoryAllWindows() |
chevron_right
filter_none
Output :

Recommended Posts:
- OpenCV - Facial Landmarks and Face Detection using dlib and OpenCV
- Transition from OpenCV 2 to OpenCV 3.x
- Image resizing using Seam carving using OpenCV in Python
- Cartooning an Image using OpenCV - Python
- OpenCV Python Program to analyze an image using Histogram
- Python Program to detect the edges of an image using OpenCV | Sobel edge detection method
- Python | Detect corner of an image using OpenCV
- Image Pyramid using OpenCV | Python
- Negative transformation of an image using Python and OpenCV
- Python | Image blurring using OpenCV
- Image Resizing using OpenCV | Python
- Find Circles and Ellipses in an Image using OpenCV | Python
- Image Translation using OpenCV | Python
- Image Registration using OpenCV | Python
- Python | Detect Polygons in an Image using OpenCV
- Image Steganography using OpenCV in Python
- Create Local Binary Pattern of an image using OpenCV-Python
- Log transformation of an image using Python and OpenCV
- Point Processing in Image Processing using Python-OpenCV
- Set Countdown timer to Capture Image using Python-OpenCV
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

