plot_colors_3d {colorfindr} | R Documentation |
Create interactive 3D scatterplots of image color compositions
Description
plot_colors_3d
calls plotly
and creates an interactive 3D scatterplot of
colors extracted from Windows BMP, JPEG, PNG, TIFF, and SVG format images with the
get_colors
function in the RGB color space.
Usage
plot_colors_3d(data, sample_size = 5000, marker_size = 2.5,
color_space = "RGB")
Arguments
data |
a |
sample_size |
the number of pixels to randomly select. |
marker_size |
size of marker. |
color_space |
specifies color space. By default, the colors are displayed in the |
Examples
# Extract all colors
pic1 <- system.file("extdata", "pic5.png", package = "colorfindr")
col <- get_colors(pic1)
# Plot image composition
plot_colors_3d(col)
[Package colorfindr version 0.1.4 Index]