ImageConvolve
ImageConvolve[image,ker]
gives the convolution of image with kernel ker.
Details and Options
- ImageConvolve performs the convolution operation on an image. It is a spatial filtering function used to apply any finite-dimensioned filter, also known as a finite impulse response (FIR) filter, to an image.
- ImageConvolve works with 2D and 3D images, operating separately on each channel.
- The convolution kernel ker is given as a two-dimensional numerical matrix or a one-channel image.
- ImageConvolve[image,ker] by default gives an image of the same dimensions as image.
- ImageConvolve takes a Padding option. The default setting is Padding->"Fixed".
- With a setting Padding->None, ImageConvolve[image,ker] normally gives an image smaller than image.
- ImageConvolve gives an image of a real type.
Background & Context
- ImageConvolve performs the convolution operation on an image. Convolution is an integral (or its discrete analog) that expresses the amount of overlap of one function as it is shifted over another. Convolution therefore “blends” one function or image with another and can be used to perform many useful operations on images such as smoothing, feature extraction, and differentiation.
- The “smoothing” function that is shifted over an image to perform convolution is a matrix known as a kernel, and many different kinds of kernels are possible and useful depending on context. GaussianFilter and MeanFilter are special cases of ImageConvolve that use a Gaussian and the mean value in a given range, respectively, as their kernels.
- ImageConvolve is a local operation, meaning it produces output pixel values based only upon the pixel values in its neighborhood as determined by the kernel. It is also a linear one, meaning it is convolution-based and replaces each pixel by a linear combination of its neighbors.
- The converse operation to ImageConvolve is ImageDeconvolve. The function ListConvolve performs the operation of convolution on lists (as opposed to images).
Examples
open allclose allBasic Examples (2)
Scope (5)
Options (4)
Applications (3)
Properties & Relations (3)
Convolution with a constant filter has an effect equivalent to mean filtering:
Relation with ListConvolve:
ImageConvolve gives an image of a real type:
Wolfram Research (2008), ImageConvolve, Wolfram Language function, https://reference.wolfram.com/language/ref/ImageConvolve.html (updated 2012).
Text
Wolfram Research (2008), ImageConvolve, Wolfram Language function, https://reference.wolfram.com/language/ref/ImageConvolve.html (updated 2012).
CMS
Wolfram Language. 2008. "ImageConvolve." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2012. https://reference.wolfram.com/language/ref/ImageConvolve.html.
APA
Wolfram Language. (2008). ImageConvolve. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/ImageConvolve.html