Learn R Programming

Rvision (version 0.2.2)

gaussianBlur: Blurs an Image Using a Gaussian Filter

Description

gaussianBlur convolves the source image with the specified Gaussian kernel. The result is a blurred version of the source image.

Usage

gaussianBlur(image, k_height = 5, k_width = 5, sigma_x = 1, sigma_y = 1)

Arguments

image

An Image object.

k_height

The half-height in pixels of the kernel.

k_width

The half-width in pixels of the kernel.

sigma_x

The standard deviation of the kernel along the x axis.

sigma_y

The standard deviation of the kernel along the y axis.

Value

image An Image object.

See Also

Image, boxFilter, blur

Examples

Run this code
# NOT RUN {
# TODO
# }

Run the code above in your browser using DataLab