Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的Erlang应用程序中使用OpenCV 。一种解决方案是编写一个 Erlang 端口等,但我确信它之前已经完成。
理想的结果是能够从 Erlang 配置 OpenCV,并且永远不会接触一行 C 代码。但这可能吗?你会怎么做?
为什么不使用 OpenCV C 库将特定的 OpenCV 配置包装在 C 应用程序中,并使用 Result = os:cmd('myapp') 调用该应用程序。这样您就不必纠结于可能的互操作性问题,并且在 C 和 Erlang 代码之间有一个清晰的分离。