SauravBhattacharya
SauravBhattacharya

Reputation: 643

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

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.

Upvotes: 1

Views: 17845

Answers (1)

c3p0
c3p0

Reputation: 35

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.

Upvotes: 1

Related Questions