Hello,
I have some pixels of my GeoTiff file who have this RGB combination (255,255,255). I want to replace these pixel values by (0,0,0).
But I don't want a replacement of pixels who have just one or two values with 255, (67,255, 255) stay (67,255,255).
I have start with this :
I have separate my 3 bands (RGB) with the RasterSelector, and I have apply RasterCellValueReplacer on each band. But, I wonder how to do the replacement only if the pixel has the value 255 on each band (RGB).
Thanks a lot,
Joc