Filter löschen
Filter löschen

Question about outputting a matrix to a pgm file

2 Ansichten (letzte 30 Tage)
Botong Zhu
Botong Zhu am 2 Feb. 2024
Kommentiert: Walter Roberson am 2 Feb. 2024
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.

Antworten (1)

Walter Roberson
Walter Roberson am 2 Feb. 2024
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 Kommentare
Botong Zhu
Botong Zhu am 2 Feb. 2024
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 am 2 Feb. 2024
Yes, fprintf() the header values.
You probably need to fwrite() the data

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Low-Level File I/O finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by