I have an 8 band remote sensing image. I can get the values from the main channel.
JXLDecoder decoder = new JXLDecoder(stream);
JXLImage image = decoder.decode();
BufferedImage bufferedImage = image.asBufferedImage();
WritableRaster raster = bufferedImage.getRaster();
How to get access to the pixel vals from the extra channels that I can see referenced in image.imageHeader.extraChannelInfo?
I have an 8 band remote sensing image. I can get the values from the main channel.
How to get access to the pixel vals from the extra channels that I can see referenced in image.imageHeader.extraChannelInfo?