imgBlur {biOps}R Documentation

Blurs an image

Description

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

Usage

imgBlur(imgdata)

Arguments

imgdata The image

Value

return an imagedata object

See Also

imgStdBlur

Examples

        ## Not run: 
                x <- readJpeg(system.file("samples", "violet.jpg", package="biOps"))
                y <- imgStdBlur(x)
        
## End(Not run)

[Package biOps version 0.2.1 Index]