r_imgDiffer {biOps} | R Documentation |
This function substracts two images and returns a new image, imgdata1 - imgdata2.
r_imgDiffer(imgdata1, imgdata2)
imgdata1 |
The first image |
imgdata2 |
The second image |
return an imagedata object
This is the R implementation of imgDiffer.
## Not run: x <- readJpeg(system.file("samples", "violet.jpg", package="biOps")) y <- r_imgDiffer(x, x) ## End(Not run)