Code Monkey home page Code Monkey logo

histogram-of-an-image's Introduction

Histogram and Histogram Equalization of an image:

Aim:

To obtain a histogram for finding the frequency of pixels in an Image with pixel values ranging from 0 to 255. Also write the code using OpenCV to perform histogram equalization.

SOFTWARE REQUIRED:

Anaconda - Python 3.7

Algorithm:

Step1:

Import the libraries.

Step2:

Use cv2.calcHist to find the histogram of the image.

Step3:

Plot the image and its stem plots using the functions.

Step4:

Equalize the grayscale image using the in-built function cv2.equalizeHist().

Step5:

Display the original and equalized image.

PROGRAM:

Developed By: Syed Abdul Wasih
Register Number: 212221240057

Write your code to find the histogram of gray scale image and color image channels.

import cv2
import matplotlib.pyplot as plt
Gray_image = cv2.imread("image.png")
Color_image = cv2.imread("1.png",-1)
cv2.imshow("Gray Image",Gray_image)
cv2.imshow("Colour Image",Color_image)
cv2.waitKey(0)
cv2.destroyAllWindows()

Display the histogram of gray scale image and any one channel histogram from color image:

import numpy as np
import matplotlib.pyplot as plt
gray_hist = cv2.calcHist([Gray_image],[0],None,[256],[0,256])
color_hist = cv2.calcHist([Color_image],[0],None,[256],[0,256])
plt.figure()
plt.imshow(Gray_image)
plt.show()
plt.title("Histogram")
plt.xlabel("Grayscale Value")
plt.ylabel("Pixel Count")
plt.stem(gray_hist)
plt.show()
plt.imshow(Color_image)
plt.show()
plt.title("Histogram of Color Image - Green Channel")
plt.xlabel("Intensity Value")
plt.ylabel("Pixel Count")
plt.stem(color_hist)
plt.show()
cv2.waitKey(0)
cv2.destroyAllWindows()

Write the code to perform histogram equalization of the image.

import cv2
gray_image = cv2.imread("shinchan.jpg",0)
cv2.imshow('Grey Scale Image',gray_image)
equ = cv2.equalizeHist(gray_image)
cv2.imshow("Equalized Image",equ)
cv2.waitKey(0)
cv2.destroyAllWindows 

OUTPPUT:

Input Grayscale Image and Color Image

output

Histogram of Grayscale Image and any channel of Color Image

output output

Histogram Equalization of Grayscale Image

output

RESULT:

Thus the histogram for finding the frequency of pixels in an image with pixel values ranging from 0 to 255 is obtained. Also,histogram equalization is done for the gray scale image using OpenCV.

histogram-of-an-image's People

Contributors

etjabajasphin avatar abdulwasih2003 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.