hsl_to_hsv {schemr}R Documentation

Convert HSL to HSV

Description

Convert HSL to HSV

Usage

hsl_to_hsv(hsl)

Arguments

hsl

A dataframe or matrix with H, S and L colour channels located in the columns 1 to 3, respectively. H in degrees in [0, 360], S and L in [0, 1]

Value

A tibble of H, S and V colour channels. Hue is constant between colour spaces, while saturation differs.

Examples

H <- sample(x = 0:360, size = 10, replace = TRUE)
S <- runif(n = 10)
L <- runif(n = 10)
hsl_to_hsv(data.frame(h = H, s = S, l = L))

[Package schemr version 0.3.0 Index]