RGB_to_Lab: Conversion of RGB to Lab colour type

View source: R/superpixels.R

RGB_to_LabR Documentation

Conversion of RGB to Lab colour type

Description

Conversion of RGB to Lab colour type

Usage

RGB_to_Lab(input_data)

Arguments

input_data

a 3-dimensional array (RGB image) where the third dimension is equal to 3

Details

Meaning: RGB (Red-Green-Blue) to LAB (Lightness, A-colour-dimension, B-colour-dimension) colour conversion

References

https://www.epfl.ch/labs/ivrl/research/snic-superpixels/

Examples


library(OpenImageR)

set.seed(1)
array_3d = array(sample(1:255, 675, replace = TRUE), c(15, 15, 3))

res = RGB_to_Lab(array_3d)


OpenImageR documentation built on July 9, 2023, 5:43 p.m.