How to use OpenCV with IntelliJ IDEA 12(如何在 IntelliJ IDEA 12 中使用 OpenCV)
问题描述
我正在尝试使用 IntelliJ IDEA 12 在 Java 中开发 OpenCV 2.4.5 应用程序.我已按照网站 的 Eclipse 说明进行操作这里.
I'm trying to use IntelliJ IDEA 12 to develop OpenCV 2.4.5 applications in Java. I've followed the instructions for Eclipse from the website here.
我遇到的问题是我可以将 jar 添加到我的库中,但我不知道如何将本地程序添加到我的类路径中.
The problem I am running into is that I can add the jar to my library but I don't know how to add the natives to my classpath.
推荐答案
为了在 Java 中使用本机库,您需要指定 java.library.path 系统属性,以便 JVM 知道在哪里查找它们.
In order to use native libraries in Java you need to specify java.library.path system property, so that JVM knows where to look for them.
在 IntelliJ 中,这可以在运行/调试配置 -> 应用程序 -> 虚拟机选项中完成,输入:
In IntelliJ this be can be done in Run/Debug Configuration -> Application -> VM options, enter:
-Djava.library.path=path/to/dll
这篇关于如何在 IntelliJ IDEA 12 中使用 OpenCV的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 IntelliJ IDEA 12 中使用 OpenCV


基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01