D 的图像处理库?
几天前我开始使用 D,我非常喜欢它。我想知道... D 是否有图像处理库?也许像opencv之类的东西?我已经搜索过但没有运气......
I started using D a few days ago and I like it a lot. I was wondering... Is there a image processing library for D? Maybe something like opencv? I have searched but no luck...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道,但一种可能性是将 OpenCV 的 C 标头简单地转换为 D。 D 可以调用任何代码它公开了 C 接口,因此您可以在 D 中编写所有代码,并在必要时调用 OpenCV 来实现后端功能,可能还可以编写 D 包装器以使其更加方便。
None that I'm aware of, but one possibility is to simply translate the C header for OpenCV to D. D can call any code that exposes a C interface, so you can write all your code in D and call OpenCV for backend functionality where necessary, possibly writing D wrappers to make it more convenient.
Derelict 具有 DevIL 和 SDL_image 的绑定。
Derelict has bindings for DevIL and SDL_image.
DMagik 似乎提供了 ImageMagick 用于 D.
DMagik seem to offer the capabilities of ImageMagick for D.