ImageResize[image, w] gives a resized version of image that is w pixels wide.ImageResize[image, {s}] gives a resized version of image with a maximum pixel width or height ...
LaplacianFilter[image, r] convolves image with a range r Laplacian kernel.LaplacianFilter[image, {r_1, r_2}] uses ranges r_i in the vertical and horizontal ...
DistanceTransform[image] gives the distance transform of image, in which the value of each pixel is replaced by its distance to the nearest background ...
MedianFilter[image, r] filters image by replacing every value by the median in its range r neighborhood. MedianFilter[data, r] applies median filtering to an array of data.
MinFilter[image, r] filters image by replacing every value by the minimum in its range r neighborhood. MinFilter[data, r] applies min filtering to an array of data.
InverseDistanceTransform[image] gives the inverse distance transform of image, returning the result as a binary image.
ImageAdjust[image] adjusts the levels in image, rescaling them to cover the range 0 to 1.ImageAdjust[image, c] adjusts the contrast of image by an amount c.ImageAdjust[image, ...
Sometimes you may want to work with a specific part of a file instead of all of it. When bringing a file into Mathematica , you can elect to import just individual parts of ...
ImageApply[f, image] applies the function f to the list of channel values for each pixel in image.
GaussianFilter[image, r] filters image by convolving with a Gaussian kernel of pixel radius r.GaussianFilter[image, r, {n_1, n_2}] convolves image with a kernel formed from ...