Mat runtime error in Android IntentService background

asked 2014-09-28 07:56:00 -0600

HydrogenDave gravatar image

updated 2014-09-28 07:58:28 -0600

Hello All, I am hoping someone can help me out. I have written a Java app and am running it on the mainthread. I started by using the tutorials and examples supplied with OpenCV. It works great. I have now added an IntentService so I can run the app in the background and have moved most of the OpenCv code to the IntentService. I didnt bring all the methods into the IntentService Handler. When the intenhandler gets called everything seems to work fine up to the point where I begin to deal with the Mats. If I try and set a color for a Mat for example I get a runtime error and it crashes.Currently I am not able to provide Logcat output.Someone on another blog suggested the BaseLoadercallback needs to be running. So I am wondering if I need the BaseLoaderCallBack within the IntentService? Any ideas?

Also everything is in Java.

Thanks in advance HydrogenDave

edit retag flag offensive close merge delete

Comments

at least you can't run any opencv code, until the BaseLoadercallback finished (since it all depends on the c++ code in the native so's)

berak gravatar imageberak ( 2014-09-28 08:00:43 -0600 )edit