But when I use 0 as a value it also removes black pixels in my map. The same with 255, it also removes white from my map. I can't find a proper value to use without losing pixels in my map/raster.
Any suggestions for this? thanks!
But when I use 0 as a value it also removes black pixels in my map. The same with 255, it also removes white from my map. I can't find a proper value to use without losing pixels in my map/raster.
Any suggestions for this? thanks!
I used the RasterExpressionEvaluator to set the black pixels from 0,0,0 to 1,1,1 but there where still some missing pixels in the output. Not as much as before but still too much. So I also used the RasterCellValueReplacer after the RasterExpressionEvaluator to force remaining pixels with the 0 value to 1. And now my output is okay!
Thnks