Image Processing Toolbox User's Guide |
Linear Filtering
Filtering is a technique for modifying or enhancing an image. For example, you can filter an image to emphasize certain features or remove other features. Image processing operations implemented with filtering include smoothing, sharpening, and edge enhancement.
Filtering is a neighborhood operation, in which the value of any given pixel in the output image is determined by applying some algorithm to the values of the pixels in the neighborhood of the corresponding input pixel. A pixel's neighborhood is some set of pixels, defined by their locations relative to that pixel. (See Neighborhood and Block Operations, for a general discussion of neighborhood operations.)
Linear filtering is filtering in which the value of an output pixel is a linear combination of the values of the pixels in the input pixel's neighborhood.
This section discusses linear filtering in MATLAB and the Image Processing Toolbox. It includes
imfilter
function
See Filter Design for information about how to design filters.
Linear Filtering and Filter Design | Convolution |
© 1994-2005 The MathWorks, Inc.