Ask Your Question

chidi's profile - activity

2016-11-15 09:28:03 -0600 commented answer Video Processing in Android

You can actually use opencv on android. Opencv has an android api

2016-10-16 21:19:09 -0600 asked a question Edit video with picture

Hi guys, I'm really new to opencv, but I need to get something done urgently. I have this video on my android app, in this video, I want to replace the head of an individual on the video with the profile picture of the user, and be able to share the modified video. Please how do I go about this?

2016-10-16 21:19:09 -0600 commented answer Error Opencv4Android: Caused by: java.lang.IllegalArgumentException: Service Intent must be explicit

Open the AsyncServicehelper class in the library folder and you'll find the initOpenCv method. replace it with the one above. I also had to replace;

Intent explicitIntent = new Intent(AppContext, org.opencv.engine.???.class);

with

Intent intent = new Intent("org.opencv.engine.BIND");
intent.setPackage("org.opencv.engine");