I tried importing an image with multiple RGB channels (4 RGB channels, 12 channels total) using the Bioformats Plugin for ImageJ.
While the import did work in principle, I could not maintain the RGB-ness in any sensible way.
The best I could do was to import the image with activated "Split channels" option and subsequently merging pairs of 3 into composite images using ImageJ's "Image->Color -> Merge channels..." functionality. However that is quite cumbersome as it is not straightforward to determine which channels are which color after they are imported as grayscale.
The Log says "Warning: Data has too many channels for Colorized color"
(for example, exact words depend on which color mode is chosen)
As for my FormatReader:
- isRGB() returns true
- getRGBChannelCount() returns 3
Both of which seem to make sense. I don't know what other functions are relevant.
Is this case generally not supported, or is there an issue with my FormatReader?