How to open .int image Using Matlab?

3 ビュー (過去 30 日間)
mohd akmal masud
mohd akmal masud 2022 年 1 月 25 日
回答済み: yanqi liu 2022 年 1 月 26 日
Hi all,
I have generate image from Monte Carlo simulation.
the file extension is .int
Anyone know how to open it using matlab?
file as attached.
  1 件のコメント
DGM
DGM 2022 年 1 月 25 日
編集済み: DGM 2022 年 1 月 25 日
Well, I don't really know how to open a .int file. As @Benjamin Thompson notes, .int is not a supported image type, but that's not to say that it's not just something common with an uncommon extension.
That said, the attached file is empty. Rather, it's a file full of nothing but 8.2kB of zeros. There's no header, no content, and no apparent structure. As such, I can't really use this for testing potential methods to open it. You might want to check whatever process you used to create the file.

サインインしてコメントする。

採用された回答

yanqi liu
yanqi liu 2022 年 1 月 26 日
fid = fopen('point1.int','rb');
a = fread(fid, 'double');
fclose(fid);
but it all zeros

その他の回答 (1 件)

Benjamin Thompson
Benjamin Thompson 2022 年 1 月 25 日
Calling imformats on my Windows machine, "INT" is not in the list. Google says that may be an SGI file format? If you are not running MATLAB on a machine supporting INT (call imformats to check) then maybe you can find a converter tool to work with it in a more common format.

Community Treasure Hunt

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

Start Hunting!

Translated by