Uses of Class
org.geotools.coverage.processing.BaseMathOperationJAI
Packages that use BaseMathOperationJAI
-
Uses of BaseMathOperationJAI in org.geotools.coverage.processing.operation
Subclasses of BaseMathOperationJAI in org.geotools.coverage.processing.operationModifier and TypeClassDescriptionclassComputes the mathematical absolute value of each sample value.classCreate a new coverage as the sum of two source coverages by doing pixel by pixel addition: result[0][0] = source0[0][0] + source1[0][0] ... ... result[i][j] = source0[i][j] + source1[i][j] ... ... result[n-1][m-1] = source0[n-1][m-1] + source1[n-1][m-1]classTakes the exponential of the sample values of a coverage.classInverts the sample values of a coverage.classTakes the natural logarithm of the sample values of a coverage.classCreate a new coverage as the multiplication of two source coverages by doing pixel by pixel multiplication: result[0][0] = source0[0][0] * source1[0][0] ... ... result[i][j] = source0[i][j] * source1[i][j] ... ...