powered by
uniform filter (convolution with uniform kernel)
uniform_filter(image, size, conv_mode = "same")
depending on the input, either a matrix or an array
matrix or 3-dimensional array where the third dimension is equal to 3
a 2-item vector specifying the horizontal and vertical dimensions of the uniform kernel, e.g. c(3,3)
the convolution mode should be one of 'same', 'full'
Lampros Mouselimis
This function applies a uniform filter to a matrix or to a 3-dimensional array where the third dimension is equal to 3
path = system.file("tmp_images", "1.png", package = "OpenImageR") image = readImage(path) filt = uniform_filter(image, c(4,4), conv_mode = "same")
Run the code above in your browser using DataLab