我们可以在开放的cv中检测没有面部检测的眼睛

时间:2013-12-12 05:15:56

标签: android opencv eye-detection

我正在使用android中的opencv。任何人都可以告诉我,如果没有人脸检测我可以检我的代码是:

    Rect e = eyesArray[i];
        e.x = area.x + e.x;
        e.y = area.y + e.y;
        Rect eye_only_rectangle = new Rect((int)e.tl().x,(int)( e.tl().y + e.height*0.4),(int)e.width,(int)(e.height*0.6));
        mROI = mGray.submat(eye_only_rectangle);
        Mat vyrez = mRgba.submat(eye_only_rectangle);
        Core.MinMaxLocResult mmG = Core.minMaxLoc(mROI);

        Core.circle(vyrez, mmG.minLoc,2, new Scalar(255, 255, 255, 255),2);
        iris.x = mmG.minLoc.x + eye_only_rectangle.x;
        iris.y = mmG.minLoc.y + eye_only_rectangle.y;
        eye_template = new Rect((int)iris.x-size/2,(int)iris.y-size/2 ,size,size);
        Core.rectangle(mRgba,eye_template.tl(),eye_template.br(),new Scalar(255, 0, 0, 255), 2);
        template = (mGray.submat(eye_template)).clone();
        return template;
    }
     return template;

1 个答案:

答案 0 :(得分:2)

您可以使用xml为“眼睛”尝试haar级联分类器: https://github.com/Itseez/opencv/tree/master/data/haarcascades

如果您也愿意考虑其他套餐,可以试试STASM或flandmark探测器。