Ask Your Question

xuan's profile - activity

2014-05-13 12:02:18 -0600 commented answer How can i change orientation without ruin camera settings?

Hi, i am working on face detection. After applying:

setDisplayOrientation() in JavaCameraView & image flipping in onCameraFrame()

    // TODO Auto-generated method stub
    mRgba = inputFrame.rgba();
    Mat mRgbaT = mRgba.t();
    Core.flip(mRgba.t(), mRgbaT, 1);
    Imgproc.resize(mRgbaT, mRgbaT, mRgba.size());

    mGray = inputFrame.gray();
    Mat mGrayT = mGray.t();
    Core.flip(mGray.t(), mGrayT, 1);
    Imgproc.resize(mGrayT, mGrayT, mGray.size());

the green frame to detect face disappeared.

2014-04-30 09:36:30 -0600 received badge  Editor (source)
2014-04-30 07:43:28 -0600 asked a question background face detection

Was using openCV sample face detection to detect face on android. How to hide interface during face detection? Like running detection in background running other application. Any tutorial? *like, face detection without preview frame *working with eclipse

Thanks