| Package | Description | 
|---|---|
| org.geotools.coverage.processing.operation | List of coverage operations. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbsoluteComputes the mathematical absolute value of each sample value. | 
| class  | AddCreate 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]
 Make sure coverages have same envelope and same resolution before using this operation. | 
| class  | ExpTakes the exponential of the sample values of a coverage. | 
| class  | InvertInverts the sample values of a coverage. | 
| class  | LogTakes the natural logarithm of the sample values of a coverage. | 
| class  | MultiplyCreate 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] ... ... result[n-1][m-1] = source0[n-1][m-1] * source1[n-1][m-1]
 Make sure coverages have same envelope and same resolution before using this operation. | 
Copyright © 1996–2019 Geotools. All rights reserved.