ImageType[image] gives the underlying type of values used for each pixel element in the Image object image.
Blur
(Built-in Mathematica Symbol) Blur[image] gives a blurred version of image.Blur[image, r] gives a version of image blurred over pixel radius r.
Masking
(Built-in Mathematica Symbol) Masking is an option for various image analysis and processing functions that specifies on which regions they should operate.
FITS
(Mathematica Import/Export Format) MIME types: application/fits, image/fits FITS scientific image and data format. Standard format for the exchange and archival storage of astronomical data. Endorsed by NASA ...
ImageSubtract[image, x] subtracts a constant amount x from each channel value in image.ImageSubtract[image_1, image_2] gives an image in which each pixel is obtained by ...
ImageChannels[image] gives the number of channels present in the data for the Image object image.
ImageAdd[image, x] adds an amount x to each channel value in image.ImageAdd[image_1, image_2] gives an image in which each pixel is the sum of the corresponding pixels in ...
ImageAssemble[{{image_11, image_12, ...}, {image_21, ...}, ...}] assembles a single image from an array of images.
ImageTrim[image , {{x_1, y_1}, {x_2, y_2}, ...}] gives the subimage of image spanned by the specified points.ImageTrim[image, {{x_1, y_1}, {x_2, y_2}, ...}, r] adds a margin ...
ImageDifference[image_1, image_2] gives an image in which each pixel is the absolute difference of the corresponding pixels in image_1 and image_2.