How to import a .uint16 file as matrix / image into MATLAB?
4 次查看(过去 30 天)
显示 更早的评论
How to import a .uint16 file as grayscale image (or matrix) into MATLAB?
Thank you
0 个评论
回答(1 个)
Sindhu Karri
2021-5-3
3 个评论
DGM
2021-5-6
编辑:DGM
2021-5-6
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Performance and Memory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!