Learn R Programming

patchPlot (version 0.1.5)

Lab2RGB: Lab2RGB

Description

Convert a matrix of points in Lab color space to RGB points.

Usage

Lab2RGB(mat)

Arguments

mat
matrix of row-elements (points in Lab color space, L should scale in [0,100], and (a,b) in [-110,110]).

Value

matrix of row-elements (points with R, G and B values in [0,1]).

References

This transform is based on ITU-R BT 709, using the D65 white point reference. See http://fr.wikipedia.org/wiki/Rec.(underscore)709 for details. also see http://www.easyrgb.com/index.php?X=MATH

See Also

Lab2RGB

Examples

Run this code
dat <- matrix(runif(30), ncol=3)
labdat <- RGB2Lab(dat)
rgbdat <- Lab2RGB(labdat)

Run the code above in your browser using DataLab