Uses of Class
org.geotools.coverage.processing.BaseMathOperationJAI

Packages that use BaseMathOperationJAI
Package
Description
List of coverage operations.
  • Uses of BaseMathOperationJAI in org.geotools.coverage.processing.operation

    Modifier and Type
    Class
    Description
    class 
    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] ... ...