Skip to contents

plot an rgb-array via graphics-package

Usage

plot_array_as_image_sRGB(rgb.array, main = "title")

Arguments

rgb.array

rgb-formatted image-array.

main

title to pot above the plot as a sub-title. is usually not rendered properly

Value

/

Examples

if (FALSE) {
plot_array_as_image_sRGB(
    HSVtoRGB(
        imager::load.example("parrots")
        ),
    main = str_c("parrots-example")
)
}