Description Usage Arguments Value Examples
This function returns the RGB image compositing the given bands.
1 | imgGetRGBFromBands(R, G, B)
|
R |
A one-band image for the Red band |
G |
A one-band image for the Green band |
B |
A one-band image for the Blue band |
RGB imagedata
1 2 3 4 5 6 7 | ## Not run: x <- readJpeg(system.file("samples", "violet.jpg", package="biOps"))
r <- imgRedBand(x)
g <- imgGreenBand(x)
b <- imgBlueBand(x)
rgb <- imgGetRGBFromBands(r, g, b)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.