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 TypeClassDescriptionclass
Computes the mathematical absolute value of each sample value.class
Create 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]class
Takes the exponential of the sample values of a coverage.class
Inverts the sample values of a coverage.class
Takes the natural logarithm of the sample values of a coverage.class
Create 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] ... ...