You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When applying GenericPiecewiseOpImage, and in particular, also its subclass RasterClassifierOpImage, the output image has the same nodata as the input, because no attempt to reset it has been made (so it gets inherited).
However, the operation gets a "gap value" input that is used to fill nodata in inputs, so technically, the output image does not have a "NODATA" (or has the gap value as nodata, but this is a decision the caller should take).
This has been noticed when working on rendering with SLD raster symbolizercolormaps in GeoServer:
The input image is rendered via the colormap, two entries end up having "white" as the value, 0 and 255
The output is padded with 0 to enlarge the image, fitting the requested area (larger than the raster)
The encoding in PNG works fine, but with JPEG the expansion to RGB happens and the nodata becomes black instead of white, creating a rectangular black region around the output, e.g.:
The text was updated successfully, but these errors were encountered:
When applying GenericPiecewiseOpImage, and in particular, also its subclass RasterClassifierOpImage, the output image has the same nodata as the input, because no attempt to reset it has been made (so it gets inherited).
However, the operation gets a "gap value" input that is used to fill nodata in inputs, so technically, the output image does not have a "NODATA" (or has the gap value as nodata, but this is a decision the caller should take).
This has been noticed when working on rendering with SLD raster symbolizercolormaps in GeoServer:
The text was updated successfully, but these errors were encountered: