Skip to content

Instantly share code, notes, and snippets.

View RamananThiru's full-sized avatar
🎯
Focusing

Ramanan RamananThiru

🎯
Focusing
  • India
View GitHub Profile
@RamananThiru
RamananThiru / hist.py
Created November 8, 2019 14:01 — forked from bistaumanga/hist.py
Histogram Equalization in python
import numpy as np
def imhist(im):
# calculates normalized histogram of an image
m, n = im.shape
h = [0.0] * 256
for i in range(m):
for j in range(n):
h[im[i, j]]+=1
return np.array(h)/(m*n)