Question about outputting a matrix to a pgm file

2 次查看(过去 30 天)
Hello, I'm new to matlab and I've got a question about outputting matrix to a pgm file. I know the most direct way of doing this is using imwrite function, but I want to ask if there's any other method or code that could output the matrix to pgm file without using imwrite function, for example, using functions like fwrite? Please let me know if there's any idea.

回答(1 个)

Walter Roberson
Walter Roberson 2024-2-2
Yes, the PGM file format is relatively simple. You can fopen(), fprintf() several times, and fclose()
It is not clear why you would want to do this yourself, but...
Note: if you are writing uint16 data, then the most significant byte must be first -- corresponding to fopen() with 'ieee-be' option.
  2 个评论
Botong Zhu
Botong Zhu 2024-2-2
So basically I just need to print all these necessary information(magic number, width, height etc) to the pgm file I desired using fprintf() and then it's done, if I didn't miss anything?
Walter Roberson
Walter Roberson 2024-2-2
Yes, fprintf() the header values.
You probably need to fwrite() the data

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Low-Level File I/O 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by