Ask Your Question

Dimuthu's profile - activity

2017-06-11 16:10:26 -0600 received badge  Popular Question (source)
2013-12-02 06:12:15 -0600 commented question Initialization worked with Android 4.2.2 not working with 4.3

I have raised an issue for this. http://code.opencv.org/issues/3372 Galaxy note 3 is also affected by this. (http://code.opencv.org/issues/3368)

2013-12-02 06:10:55 -0600 commented question Failed to run demos on Galaxy Note 3

I have raised another issue for GS4. Looks like the same issue. http://code.opencv.org/issues/3372

2013-11-10 14:39:40 -0600 received badge  Editor (source)
2013-11-10 13:23:36 -0600 commented question Failed to run demos on Galaxy Note 3

Same happening to me on GS4 after updating into Android 4.3

2013-11-10 01:44:40 -0600 asked a question Initialization worked with Android 4.2.2 not working with 4.3

Hi, I'm preparing for my masters degree final project and I recently updated my mobile device (Galaxy S4) into Android 4.3. (bad call) My OpenCV project was working well, but now it's not starting up anymore. (Using JavaCameraView) I also tried the OpenCV tutorials available in the SDK directory and they also not starting up.

I'm totally **ed up now since I have to complete everything within 2 weeks:( Tried uninstalling 4.3 update, but couldn't so far. At the moment trying to build OpenCV from source expecting a solution is there..

Any help is greatly appriciated!!!

EDIT: And the error is 11-11 02:01:40.432: I/Adreno-EGL(31134): <qegldrvapi_eglinitialize:316>: EGL 1.4 QUALCOMM build: (CL4169980)

11-11 02:01:40.432: I/Adreno-EGL(31134): OpenGL ES Shader Compiler Version: 17.01.10.SPL

11-11 02:01:40.432: I/Adreno-EGL(31134): Build Date: 09/26/13 Thu

11-11 02:01:40.442: W/Adreno-EGL(31134): <qegldrvapi_eglcreatecontext:2340>: EGL_BAD_CONFIG

11-11 02:01:40.442: E/OpenCV_for_Tegra(31134): Canot create OpenGL context

11-11 02:01:40.543: I/ActivityManager(700): Process org.opencv.engine:OpenCVEngineProcess (pid 31134) (adj 0) has died.

I tried both static loading and Async loading.

2013-07-31 12:18:45 -0600 asked a question Highgui.imread() on Java gives UnsatisfiedLinkError

I'm new to openCV and trying to write my first program with it. However, I still couldn't get it to working.

File file = new File("L:\\Rc.jpg");
if (file.exists()) { // This is true
    Mat m = Highgui.imread(file.getAbsolutePath());  //file.getPath() also same
}

the Highgui.imread command gives the following error no matter the image file I try to use. (BMP, JPEG, etc) Am I fundamentally wrong?

Version: opencv 2.4.5, OS : Windows 7 32bit, Java: jdk1.7.0_11, IDE: IntelliJ IDEA Community Edition 12.0.4

Exception in thread "main" java.lang.UnsatisfiedLinkError: org.opencv.highgui.Highgui.imread_1(Ljava/lang/String;)J
at org.opencv.highgui.Highgui.imread_1(Native Method)
at org.opencv.highgui.Highgui.imread(Highgui.java:350)
at com.example.AndroidTest.DetectSquares.main(DetectSquares.java:21)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
2013-07-31 10:40:02 -0600 received badge  Supporter (source)