| imgBlur {biOps} | R Documentation |
This function blurs an image by convoluting with the following matrix:
| 1/16 | 1/8 | 1/16 |
| 1/8 | 1/4 | 1/8 |
| 1/16 | 1/8 | 1/16 |
imgBlur(imgdata)
imgdata |
The image |
return an imagedata object
## Not run:
x <- readJpeg(system.file("samples", "violet.jpg", package="biOps"))
y <- imgStdBlur(x)
## End(Not run)