如何在 C 中读取 2D 双精度数组中的 .pgm 图像文件

发布于 2024-11-09 13:56:23 字数 103 浏览 0 评论 0原文

问题很简单:如何将 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨光如昨 2024-11-16 13:56:23

如果它保存为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文