Go to: Related nodes. Attributes.

Luminance is a utility node that takes in a color, and outputs a luminance value.

Luminance simply means the apparent brightness of a color, as seen by the human eye. The human eye is not equally sensitive across the whole spectrum; greens appear brighter than reds, and reds brighter than blue. For this reason, luminance is calculated by this equation:

   Luminance = 0.3 * red + 0.59 * green + 0.11 * blue
 
You can use the Luminance node to convert a color image or texture into a monochrome (black-and-white) image. To do this, connect the texture's Out Color into the Luminance node's Value attribute, then connect the Luminance node's Out Value attribute to all three color channels (R, G, and B) of a shader.

In the table below, imporant attributes have their names listed in bold in the description column.

This node is MP safe

Node nameParentsClassificationMFn typeCompatible function sets
luminancedependNodeutility/colorkLuminancekBase
kNamedObject
kDependencyNode
kLuminance

Related nodes

blendColors, clamp, lightInfo, gammaCorrect, surfaceLuminance, contrast, rgbToHsv, hsvToRgb, samplerInfo, setRange, resolution, renderQuality, renderGlobals, renderGlobalsList, baseShadingSwitch, singleShadingSwitch, doubleShadingSwitch, tripleShadingSwitch

Attributes (5)

outValue, value, valueB, valueG, valueR

Long name (short name)TypeDefaultFlags
value (v) float30.0, 0.0, 0.0outputinputconnectablestorable
Value is the input color or texture.
valueR (vr) float0.0outputinputconnectablestorablekeyable
The first component of Value
valueG (vg) float0.0outputinputconnectablestorablekeyable
The second component of Value
valueB (vb) float0.0outputinputconnectablestorablekeyable
The third component of Value
outValue (o) float0.0outputconnectable
Out Value is the luminance of the Value input.