Words
|
Definitions
|
Computational molecule
|
A filter matrix used to perform correlation. The filter design functions in the Image Processing Toolbox return computational molecules. A computational molecule is a convolution kernel that has been rotated 180 degrees.
|
Convolution
|
A neighborhood operation in which each output pixel is a weighted sum of neighboring input pixels. The weights are defined by the convolution kernel. Image processing operations implemented with convolution include smoothing, sharpening, and edge enhancement.
|
Convolution kernel
|
A filter matrix used to perform convolution. A convolution kernel is a computational molecule that has been rotated 180 degrees.
|
Correlation
|
A neighborhood operation in which each output pixel is a weighted sum of neighboring input pixels. The weights are defined by the computational molecule. Image processing operations implemented with convolution include smoothing, sharpening, and edge enhancement. Correlation is closely related mathematically to convolution.
|
FIR filter
|
A filter whose response to a single point, or impulse, has finite extent. FIR stands for finite impulse response. An FIR filter can be implemented using convolution. All filter design functions in the Image Processing Toolbox return FIR filters.
|
Frequency response
|
A mathematical function describing the gain of a filter in response to different input frequencies.
|
Neighborhood operation
|
An operation in which each output pixel is computed from a set of neighboring input pixels. Convolution, dilation, and median filtering are examples of neighborhood operations.
|
Ripples
|
Oscillations around a constant value. The frequency response of a practical filter often has ripples where the frequency response of an ideal filter is flat.
|
Separable filter
|
A two-dimensional filter that can be implemented by a sequence of two one-dimensional filters. Separable filters can be implemented much faster than nonseparable filters. The function filter2 checks a filter for separability before applying it to an image.
|
Window method
|
A filter design method that multiples the ideal impulse response by a window function, which tapers the ideal impulse response. The resulting filter's frequency response approximates a desired frequency response.
|