dilate {imbibe} | R Documentation |
Mathematical morphology and filtering operations
Description
Mathematical morphology and filtering operations
Usage
dilate(image, kernel = NULL, ..., max = FALSE, nonzero = TRUE)
dilateall(image, kernel = NULL, ...)
erode(image, kernel = NULL, ..., min = FALSE)
filter_median(image, kernel = NULL, ...)
filter_mean(image, kernel = NULL, ..., norm = TRUE)
smooth_gauss(image, sigma)
subsample(image, offset = FALSE)
Arguments
image |
An image object or pipeline. |
kernel |
A suitable kernel function (see |
... |
Additional arguments to the kernel function, if any. |
max |
Logical value: if |
nonzero |
Logical value: if |
min |
Logical value: if |
norm |
Logical value indicating whether the mean filter will be normalised or not. |
sigma |
Numeric value giving the standard deviation of the Gaussian smoothing kernel. |
offset |
Logical value indicating whether subsampled pixels should be offset from the original locations or not. |
Value
An updated pipeline.