gaussianBlur: Blurs an Image Using a Gaussian Filter

Description Usage Arguments Value Author(s) See Also Examples

View source: R/filters.R

Description

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

Usage

1
2
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 (default: 5).

k_width

The half-width in pixels of the kernel (default: 5).

sigma_x

The standard deviation of the kernel along the x axis (default: 1).

sigma_y

The standard deviation of the kernel along the y axis (default: 1).

Value

image An Image object.

Author(s)

Simon Garnier, garnier@njit.edu

See Also

Image, boxFilter, blur

Examples

1
# TODO

neuroconductor-devel-releases/Rvision documentation built on Oct. 27, 2020, 1:16 p.m.