Learn R Programming

OpenImageR (version 1.1.7)

RGB_to_HSV: Conversion of RGB to HSV colour type

Description

Conversion of RGB to HSV colour type

Usage

RGB_to_HSV(input_data)

Arguments

input_data

a 3-dimensional array (RGB image)

Details

Meaning: RGB (Red-Green-Blue) to HSV (Hue, Saturation, Value) colour conversion

Examples

Run this code
# NOT RUN {
library(OpenImageR)

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

res = RGB_to_HSV(array_3d)

# }

Run the code above in your browser using DataLab