| imgOR {biOps} | R Documentation |
This function does a logic OR between two images and returns a new image.
imgOR(imgdata1, imgdata2)
imgdata1 |
The first image |
imgdata2 |
The second image |
return an imagedata object
## Not run:
x <- readJpeg(system.file("samples", "violet.jpg", package="biOps"))
y <- imgOR(x, x)
## End(Not run)