Erosion
(Built-in Mathematica Symbol) Erosion[image, ker] gives the morphological erosion of image with respect to the structuring element ker.Erosion[image, r] gives the erosion with respect to a range-r square.
FileExtension["file"] gives the file extension for a file name.
FileNameSplit["filename"] splits a file name into a list of parts.
FromDMS
(Built-in Mathematica Symbol) FromDMS[{d, m, s}] converts from degrees, minutes, and seconds to decimal degrees. FromDMS["dms"] converts from a DMS string to decimal degrees.FromDMS["latlong"] converts ...
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 ...
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 ...
InstallService["url"] installs the web service operations in the WSDL description at the URL given.InstallService["url", "context`"] installs web service operations, creating ...
Labeled
(Built-in Mathematica Symbol) Labeled[expr, lbl] displays expr labeled with lbl. Labeled[expr, lbl, pos] places lbl at a position specified by pos. Labeled[expr, {lbl_1, lbl_2, ...}, {pos_1, ...}] places ...
LinkRead[link] reads one expression from the specified MathLink connection. LinkRead[link, h] wraps h around the expression read before evaluating it.
MeanFilter[image, r] filters image by replacing every value by the mean value in its range r neighborhood. MeanFilter[data, r] applies mean filtering to an array of data.