How to read a .pgm image file in a 2D double array in C

混江龙づ霸主 提交于 2019-11-27 07:32:31

问题


The question is quite simple: How to read a .pgm image file into a 2D double array in C. I do not have a .pgm buffer in memory. I would like to read it from the disk into memory.

Would really appreciate if I could get a code snippet. Thank You.


回答1:


You probably won't get someone writing you all the code, but here are some useful links that might point you in the right direction:

  • pgm.c
  • pgm.h
  • PGM Format Specification
  • http://www.cplusplus.com/forum/general/2393/



回答2:


If its saved as ASCII you could just read it with the "normal" file reading methods of C. You can of course use the netpbm library (linux only?), which gives you functions to handle a pgm file.



来源:https://stackoverflow.com/questions/6085390/how-to-read-a-pgm-image-file-in-a-2d-double-array-in-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!