Open In App
Related Articles

Calculate the area of an image using Matplotlib

Improve Article
Improve
Save Article
Save
Like Article
Like

Let us see how to calculate the area of an image in Python using Matplotlib. 

Algorithm: 

  1. Import the matplotlib.pyplot module.
  2. Import an image using the imread() method.
  3. Use the shape attribute of the image to get the height and width of the image. It fetches the number of channels in the image.
  4. Calculate the area as, area = height * width.
  5. Display the area.

Example 1: Consider the following image :  

“GFG.jpg”

Python3




# import necessary library
import matplotlib.pyplot as plt
 
# read an image
img = plt.imread("GFG.jpg")
 
# fetch the height and width
height, width, _ = img.shape
 
# area is calculated as “height x width”
area = height * width
 
# display the area
print("Area of the image is : ", area)


Output : 

Area of the image is : 50244

Example 2: Consider the following image : 

“image.jpg”


Python3




# import necessary library
import matplotlib.pyplot as plt
 
# read an image
img = plt.imread("image.jpg")
 
# fetch the height and width
height, width, _ = img.shape
 
# area is calculated as “height x width”
area = height * width
 
# display the area
print("Area of the image is : ", area)


Output : 

Area of the image is : 213200

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 31 Jul, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials