ResampleMethod Enumeration
Specifies the method to use when resampling a raster to a different resolution.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Syntax
public enum ResampleMethod
Values
Value name | Value | Description |
---|---|---|
Auto | 0 | Chooses either the Interpolate or the NearestNeighbor method, depending on if the raster is continuous or discrete. |
NearestNeighbor | 1 | For each cell in the destination raster, the closest cell in the source raster is chosen. |
Interpolate | 2 | Each cell in the destination raster is calculated by interpolating between several of the closest cells in the source raster. This typically results in a smoother image with less sharp contours, compared to NearestNeighbor. This method will not work well for rasters with a color table, since it will interpolate the color indices rather than the actual colors, and the result will not have the correct colors. If you need to resample color table rasters, add a RasterConversionOperator in your operator chain to convert the rasters to RGB or RGBA before resampling. |
Vote | 3 | For each cell in the destination raster, the cell value that occurs most frequently in corresponding source cells will be chosen. |
Platforms
Windows, Linux, Android