Borrar filtros
Borrar filtros

Question about outputting a matrix to a pgm file

2 visualizaciones (últimos 30 días)
Botong Zhu
Botong Zhu el 2 de Feb. de 2024
Comentada: Walter Roberson el 2 de Feb. de 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.

Respuestas (1)

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

Iniciar sesión para comentar.

Categorías

Más información sobre Low-Level File I/O en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by