I have a set of rasters in which I want to replace any rgb value of (0,0,0) with (nodata,nodata,nodata)
I've tried using
gdal_translate -a_nodata "0,0,0" in.tif out.tifBut this seems to convert all 0s to nodata, for example (0,10,10) becomes (nodata,10,10). I want these to stay the same and...