如何在 C 中读取 2D 双精度数组中的 .pgm 图像文件
问题很简单:如何将 .pgm 图像文件读入 C 中的 2D 双精度数组。我内存中没有 .pgm 缓冲区。我想将它从磁盘读入内存。
如果我能得到一个代码片段,我将非常感激。谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它保存为 ASCII,您可以使用 C 的“正常”文件读取方法来读取它。
您当然可以使用 netpbm 库(仅限 Linux?),它为您提供了处理 pgm 文件的函数。
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.