Skip to content

Instantly share code, notes, and snippets.

@behreajj
Last active November 10, 2021 03:16
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 behreajj/7e8fcaadd3e5dda717c12563ed7404ad to your computer and use it in GitHub Desktop.
Save behreajj/7e8fcaadd3e5dda717c12563ed7404ad to your computer and use it in GitHub Desktop.
Naive Method: Average Gray
static float GrayAverage (in Color c)
{
return (c.r + c.g + c.b) / 3.0f;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment