Skip to content

Instantly share code, notes, and snippets.

@sadimanna
Created July 7, 2020 09:27
Show Gist options
  • Select an option

  • Save sadimanna/01f3d4e135a4d547b452582aa224b66d to your computer and use it in GitHub Desktop.

Select an option

Save sadimanna/01f3d4e135a4d547b452582aa224b66d to your computer and use it in GitHub Desktop.
// Creating the Histogram
int hist[256];
for (i = 0; i < 256; i++)
hist[i] = 0;
for (i = 0; i < height; i++)
for (j = 0; j < width; j++)
hist[image[i][j]] += 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment