How to import a .uint16 file as matrix / image into MATLAB?

Antworten (1)

Sindhu Karri
Sindhu Karri am 3 Mai 2021

1 Stimme

Hii,
You can use imread function to read image file and store them as an array variable.Use rgb2gray function to convert RGB image or colormap to grayscale.

3 Kommentare

if I use this command it returns the error (Unable to determine the file format.)
imread('file.uint16')
DGM
DGM am 6 Mai 2021
Bearbeitet: DGM am 6 Mai 2021
Do you know what format the file is in? The only thing that the extension implies is that it's 16 bit unsigned integer. It doesn't say anything about it having any format.
I'm inclined to assume it's just raw data, in which case you can probably just treat it like any .bin file and read it with fread(). You'll need to know its geometry in order to get anything useful out of it.
If you know what you're looking for, you might be able to peek at it with a hex editor to see if there's anything revealing in the beginning of the file.
If the file isn't confidential (or huge), you may consider attaching it.
I confirm that with the command fread (), with the right size, the file is correctly read.
The idea on the hex editor is interesting.
Thank you

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Convert Image Type finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 29 Apr. 2021

Kommentiert:

am 10 Mai 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by