Ask Your Question

Zeo's profile - activity

2018-02-19 19:10:27 -0600 received badge  Popular Question (source)
2015-12-20 23:38:10 -0600 received badge  Popular Question (source)
2013-11-18 04:04:42 -0600 received badge  Self-Learner (source)
2013-11-14 21:42:48 -0600 answered a question how to avoid intalling Manager in the face-detection app?

I solved it by commenting the OpenCVLoader.initAsyn() and using OpenCVLoader.initDebug(), and then move the used code in loaderCallback method under the OpenCVLoader.initDebug().

The code will be like below:

    // TODO Auto-generated method stub
    //OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_6, this,
    //      mLoaderCallback);
    if(OpenCVLoader.initDebug()){
    //code from mLoaderCallbak
    System.loadLibrary("lib");
    //other thing you want to do
    }

also you need to add something in the Android.mk .Seek for detail in the tutorial "Application Development with Static Initialization",

2013-11-14 21:17:03 -0600 asked a question face-detect with portrait mode and front-camera

I tried to make my own face detect app on Android. The app should be used in portrait display, using front-camera. Firstly, I made it like below:

image description

knowing that I have to rotate the view or the camera, I looked for help in this forum and found the method "mCamera.setDisplayOriention(90)" cannot make sense in Opencv sample's struction. Then I got my way in link text .The result came out like below:

image description

I had successfully added the face-detection by studying the sample. But I want some improvement because the black border is ugly.

Seeking for advise here.

2013-11-10 07:10:55 -0600 commented answer Android camera image rotation

@jameo have you got a solution? I had tried to cast the JavaCameraView and reached to Camera.open() lines, but I still failed to rotate the view by adding "camera.setDisplayOrientation(90);" @matt.hammer could you tell me more about this?

2013-10-29 11:24:59 -0600 asked a question how to avoid intalling Manager in the face-detection app?

I can read the tutorial "Application Development with Static Initialization",but I find it hard to make the face-detection demo app into an app that runs without the installation of opencv manager?

Where can I get a version of no opencv manager or how can I change the face-detection app into no opencv manager version?

Thanks