Image filtering
imf = imfilter(im, F, bound, opsz)
An image which will be filterd. The image can be UINT8, INT8, UINT16, INT16, INT32, DOUBLE.
A double 2D filter.
The filtered image which has the same dimension and class with im .
Type of boundary, values or keywords. Current supported type with keyword is 'circular'.
Output image size, either 'full' or 'same'.
imfilter filters an image im with filter F. When im is a mult-channel image, each channel can be filtered with F seperately. Input image pixel values outside the bounds of the image are assumed to equal the nearest array border value.
The only diffence of filter2 with imfilter is the output of filter2 is double matrix, and the output of imfilter has the same type as input and the elements in the output matrix that exceed the range of the integer type will be truncated.