Hi, I’m trying to read an image without meta header. I’m told that I could use ImageJ/Fiji to open the image by “File menu > import > Raw”, and set
Image type: 16-bit Unsigned
Width: 2048 pixels
Height: 2048 pixels
Offset to First Image: 1
Gap Between Images: 0 bytes
Check “White is Zero” only
Just like this:
So I think I could create a mhd file, according to this.
I’m not sure what ElementType should I use. Maybe I should use MET_USHORT_TYPE according to this? Also, which attribute is for “White is Zero” option?
There is no option for white is zero in meta io. With certain microscopy formats (I encounter this with STEM) it is a viewing preference to see the image inverted, as ITK is focused on processing rather than viewing, in general it does not do much related to descriptor for “how to display” an image.
Thank you. I save the image to mhd format using ImageJ/Fiji. And then I get a template for the mhd file. It works great so far. As for White is Zero, InvertIntensityImageFilter helps.