任何将从 PIL 加载的图像传递到 C++ 的方法使用 Boost.Python 的函数?

发布于 2024-10-08 10:34:28 字数 118 浏览 4 评论 0原文

我正在尝试制作一个包装器以在 Python 中使用 C++ 类,但我找不到方法来传递我已在 Python 程序中加载的图像。

我可以传递图像的路径并再次将其加载到 C++ 函数中,但这不是我想要的解决方案。

I'm trying to make a wrapper to use a C++ Class in Python but I can't find a way to pass this image I already loaded in my Python program.

I could pass the path to the image and load it inside the C++ function again but that's not the solution I want.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

触ぅ动初心 2024-10-15 10:34:28

“这不是我想要的解决方案。”

为什么不呢?

无论如何,C++ 不会理解 Image 对象。它更有可能只需要原始图像数据。您可以通过调用图像对象上的 tostring() 方法并传入编码器和参数来实现这一点。

但直接读取文件会快很多。

http://effbot.org/imagingbook/image.htm

"that's not the solution I want."

Why not?

Anyway, the C++ will not understand the Image object. It is more likely that it does want just the raw image data. You can get that by calling the tostring() method on the image object, passing in a encoder and parameters.

But reading the file directly will be much faster.

http://effbot.org/imagingbook/image.htm

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