Skip to content

Instantly share code, notes, and snippets.

@quocdat32461997
Last active January 27, 2020 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quocdat32461997/5a2368835fc882e70801fe960b4d34c6 to your computer and use it in GitHub Desktop.
Save quocdat32461997/5a2368835fc882e70801fe960b4d34c6 to your computer and use it in GitHub Desktop.
def eq_hist(hist, colors, img_size):
hist = hist * colors / (2 * img_size)
cum_hist = hist.cumsum() #Cummulative histogram
equalized_hist = np.floor(cum_hist)
return equalized_hist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment