English 中文(简体)
JavacV- OpenCV 错误
原标题:JavaCV-OpenCV error

I want to capture my webcam on a easy way into Java. I followed this tutorial with JavaCV and OpenCV: http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/opencv-javacv-eclipse-project.html

尝试一个示例代码时, 我得到这个错误 :

Exception in thread "main" java.lang.UnsatisfiedLinkError: C:UsersFrancisAppDataLocalTempjniopencv_core7109340164936655704.dll: Can t find dependent libraries
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1807)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1703)
        at java.lang.Runtime.load0(Runtime.java:770)
        at java.lang.System.load(System.java:1003)
        at com.googlecode.javacpp.Loader.loadLibrary(Loader.java:403)
        at com.googlecode.javacpp.Loader.load(Loader.java:342)
        at com.googlecode.javacpp.Loader.load(Loader.java:316)
        at com.googlecode.javacv.cpp.opencv_core.<clinit>(opencv_core.java:131)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:247)
        at com.googlecode.javacpp.Loader.load(Loader.java:335)
        at com.googlecode.javacv.cpp.opencv_imgproc.<clinit>(opencv_imgproc.java:96)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:247)
        at com.googlecode.javacpp.Loader.load(Loader.java:335)
        at com.googlecode.javacv.cpp.opencv_highgui.<clinit>(opencv_highgui.java:91)
        at com.googlecode.javacv.OpenCVFrameGrabber.start(OpenCVFrameGrabber.java:171)
        at beeldherkenningp1.CaptureImage.captureFrame(CaptureImage.java:13)
        at beeldherkenningp1.BeeldherkenningP1.main(BeeldherkenningP1.java:37)

微软 C++ C++ 2010 重新分配软件包已安装, 将 OpenCV 提取为根, 我的系统路径已设置正确... ( 已经尝试过几次, 以恢复视觉 C++ 重新分配软件包 ) 。 (x64 位, Netbeans 是 X86 重要吗? )

或者有人知道另一个"强势"/强势" 在Java捕捉到摄像头的异象吗?

非常感谢!

最佳回答

是我写了你听的辅导课

Exception in thread "main" java.lang.UnsatisfiedLinkError: 
C:UsersFrancisAppDataLocalTempjniopencv_core7109340164936655704.dll: 
Can t find dependent libraries

似乎 dll 库不在环境变量路径中, 原因是您没有正确添加打开cv 的路径 。 或者这可能会是问题, 因为您安装了罗曼语所说的 x64 和 x86 版本的 Thet Vision C++再分配 。

我建议你遵循我在此描述的 JavaCV 步骤: < a href="http://ganeshtiwaridotocomdonp.blogspot.com/2011/12/opencv-javacv-javacv- eclipse- project.html" rel=“不跟随 noreferrer”>eclipse 工程配置窗口 ? 并在系统路径添加以下内容吗?

< 坚固 > 配置路径

64-bit version of the JDK:
[installation path]uildcommon	bbintel64vc10;C:opencvuildx64vc10in;
32-bit version of the JDK:
[installation path]uildcommon	bbia32vc10;C:opencvuildx86vc10in;

这里 [安装路径] 可能是 "C:opencv"

希望这能帮上忙

<强 > UPATE:

设置 JavaCV 的简单和简单步骤是可用的。 请检查下面的链接 :

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签