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

2019-01-20 05:47发布

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.

2条回答
劫难
2楼-- · 2019-01-20 06:24

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:

查看更多
Animai°情兽
3楼-- · 2019-01-20 06:39

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.

查看更多
登录 后发表回答