Description Usage Arguments Value Examples
Calculate the median values for the RGB values of the image. The colour returned is not necessarily a colour in the image, it just contains the median values.
1 | medianRgb(rgbs)
|
rgbs |
colorspace library RGB values |
A colorspace library RGB object representing the median RGB colour of the image. This may not match a colour actually in the image.
1 2 3 4 5 6 7 | library(CulturalAnalytics)
library(jpeg)
imgdir<-paste(system.file(package = "CulturalAnalytics"), "images", sep = "/")
imgs<-paste(imgdir, dir(path = imgdir, pattern = ".jpg"), sep = "/")
img<-readJPEG(imgs[1])
rgbs<-imageToRgb(img)
rgbMed<-medianRgb(rgbs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.