Last active
November 10, 2021 03:16
-
-
Save behreajj/7e8fcaadd3e5dda717c12563ed7404ad to your computer and use it in GitHub Desktop.
Naive Method: Average Gray
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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