ImageClip[image] clips all channel values in image to lie in the default range.ImageClip[image, {min, max}] clips channel values to lie in the range from min to ...
ImageConvolve[image, ker] gives the convolution of image with kernel ker.
ImageMargins is an option that specifies the absolute margins to leave around the image displayed for an object.
ImagePartition[image, s] partitions an image into an array of s*s-pixel subimages.ImagePartition[image, {w, h}] partitions an image into an array of subimages of pixel width ...
Insert
(Built-in Mathematica Symbol) Insert[list, elem, n] inserts elem at position n in list. If n is negative, the position is counted from the end. Insert[expr, elem, {i, j, ...}] inserts elem at position {i, ...
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 ...
LengthWhile[list, crit] gives the number of continuous elements e_i starting at the beginning of list for which crit[e_i] is True.
MaxDetect[image] gives a binary image in which white pixels correspond to constant extended maxima in image.MaxDetect[image, h] finds extended maxima where the range of ...
MeanShiftFilter[image, r, d] replaces each pixel with the mean of the pixels in a range-r neighborhood and whose value is within a distance d.MeanShiftFilter[array, r, d] ...
MeanShift[list, d] replaces each element in list by the mean of the values of all elements that differ by less than d.