Ask Your Question

kaira's profile - activity

2018-05-17 11:43:16 -0600 received badge  Popular Question (source)
2014-04-28 12:03:40 -0600 commented question Problem in linking opencv java with eclipse

there was some problem with native libraries..which I sorted out by trying out different combinations Thankyou itay

2014-04-28 05:46:08 -0600 commented question Problem in linking opencv java with eclipse

This is the sample code

package com.hit_and_try;

import org.opencv.core.Core; import org.opencv.core.CvType; import org.opencv.core.Mat;

public class Hello { public static void main( String[] args ) { System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); Mat mat = Mat.eye( 3, 3, CvType.CV_8UC1 ); System.out.println( "mat = " + mat.dump() ); } }

And this is the error m getting

Exception in thread "main" java.lang.UnsatisfiedLinkError: org.opencv.core.Mat.n_eye(III)J at org.opencv.core.Mat.n_eye(Native Method) at org.opencv.core.Mat.eye(Mat.java:1467) at com.hit_and_try.Hello.main(Hello.java:12)

2014-04-27 23:40:03 -0600 asked a question Problem in linking opencv java with eclipse

Hi, I am trying to use openCV with eclipse in windows 7.I followed this(http://) tutorial but still it is giving following error: Exception in thread "main" java.lang.UnsatisfiedLinkError: org.opencv.core.Mat.n_eye(III)J at org.opencv.core.Mat.n_eye(Native Method) at org.opencv.core.Mat.eye(Mat.java:1467) at com.hit_and_try.Hello.main(Hello.java:12) Please let me know where I am going wrong.