I’m trying to extract data from 16-bit grayscale TIFF images. The only documented method I’ve found involves commands like:
…
RawTiffImage = Open( FilePath, tif );
{r, g, b} = RawTiffImage << Get Pixels( "rgb" );
But this yields matrices r, g, and b with only 8-bit grayscale values, and I lose the other 8 bits.
Correspondence with the support team informs me that JMP cannot process 16-bit TIFF image files. I would be grateful for the ability to directly import 16-bit images directly into a single matrix.