Why Converting a Photo to Black & White Isn't Just Averaging the Colors
Published 2026-09-14
The naive approach: just average the channels
The most obvious way to turn a color pixel into a shade of gray is to average its red, green and blue values equally — add them up and divide by three. It's simple, and it produces something recognizably grayscale, but it's not how professional image editors do it, because it doesn't match how human eyes actually perceive brightness.
Human eyes are far more sensitive to green
The human visual system is measurably more sensitive to green light than to red, and far more sensitive to red than to blue — a well-established property of how the eye's color receptors respond. A simple average treats all three colors as equally important to perceived brightness, which produces a grayscale image that doesn't match how bright the original colors actually looked to a human observer.
The luminance formula
The standard fix is a weighted formula — commonly 0.299×Red + 0.587×Green + 0.114×Blue — that gives green roughly five times the weight of blue when calculating brightness. This single formula is why a proper grayscale conversion of a photo with, say, a bright yellow flower against a dark blue sky looks correctly bright and dark in the right places, while a simple average would muddy that contrast.
Try it yourself
Our Black & White Image tool uses this proper luminance-based formula rather than a flat average, and includes an intensity slider so you can blend between full color and full grayscale.