可以将 OpenCV lib 嵌入到我的 DLL 中(在 Visual C++ 中开发)
我已经开发了我的 Visual C++ 项目并将其作为 DLL 发布,该项目使用了几个开放的 CV 函数。我的问题是“如何将 OpenCV lib 集成(嵌入)到我的 DLL 中(创建一个包含 OpenCV lib 的独立 DLL)?”,我想让用户在不安装 OpenCV 的情况下使用我的 dll 或在 DLL 中包含任何 OpenCV dll 或 lib其他机器。谢谢!
I have developed my Visual C++ project and release it as DLL, The project uses several open CV functions. My question is "how to integrate(embed) the OpenCV lib into my DLL (create a standalone DLL that contains OpenCV lib inside)?", I want to let users use my dll without install OpenCV or include any OpenCV dll or lib in the other machine.Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 opencv 构建为静态库(从未测试过)或使用 opencv dll 依赖项部署所有内容。
Build opencv as static library (Never tested) or deploy all using opencv dll depencies.