Как оценить позу лица по ориентирам лица ML Kit - PullRequest
0 голосов
/ 02 апреля 2019

Я использую Firebase ML Kit на iOS для обнаружения лиц. Хотя он обеспечивает углы Эйлера Y и Z, он не обеспечивает угол Эйлера X (шаг). Поэтому я хотел бы попытаться вычислить высоту тона, используя OpenCV solvePnp, как обсуждалось здесь: https://www.learnopencv.com/head-pose-estimation-using-opencv-and-dlib/#code

Вот моя функция Objective C:

+(void) estimatePose:(FIRVisionFace *)face imgSize:(CGSize)imgSize {

    // Contour legend: https://firebase.google.com/docs/ml-kit/images/examples/face_contours.svg
    FIRVisionFaceContour* faceOval = [face contourOfType:FIRFaceContourTypeFace];
    FIRVisionFaceContour* leftEyeContour = [face contourOfType:FIRFaceContourTypeLeftEye];
    FIRVisionFaceContour* rightEyeContour = [face contourOfType:FIRFaceContourTypeRightEye];
    FIRVisionFaceContour* noseBridge = [face contourOfType:FIRFaceContourTypeNoseBridge];
    FIRVisionFaceContour* upperLipTop = [face contourOfType:FIRFaceContourTypeUpperLipTop];

    FIRVisionPoint* chin = faceOval.points[18];
    FIRVisionPoint* leftEyeLeftCorner = leftEyeContour.points[0];
    FIRVisionPoint* rightEyeRightCorner = rightEyeContour.points[8];
    FIRVisionPoint* noseTip = noseBridge.points[1];
    FIRVisionPoint* leftMouthCorner = upperLipTop.points[0];
    FIRVisionPoint* rightMouthCorner = upperLipTop.points[10];

    // 2D/3D model points using https://www.learnopencv.com/head-pose-estimation-using-opencv-and-dlib/#code
    image_points.push_back( cv::Point2d(noseTip.x.doubleValue, noseTip.y.doubleValue) );    // Nose tip
    image_points.push_back( cv::Point2d(chin.x.doubleValue, chin.y.doubleValue) );    // Chin
    image_points.push_back( cv::Point2d(leftEyeLeftCorner.x.doubleValue, leftEyeLeftCorner.y.doubleValue) );    // Left eye left corner
    image_points.push_back( cv::Point2d(rightEyeRightCorner.x.doubleValue, rightEyeRightCorner.y.doubleValue) );     // Right eye right corner
    image_points.push_back( cv::Point2d(leftMouthCorner.x.doubleValue, leftMouthCorner.y.doubleValue) );    // Left Mouth corner
    image_points.push_back( cv::Point2d(rightMouthCorner.x.doubleValue, rightMouthCorner.y.doubleValue) );    // Right mouth corner

    model_points.push_back(cv::Point3d(0.0f, 0.0f, 0.0f));               // Nose tip
    model_points.push_back(cv::Point3d(0.0f, -330.0f, -65.0f));          // Chin
    model_points.push_back(cv::Point3d(-225.0f, 170.0f, -135.0f));       // Left eye left corner
    model_points.push_back(cv::Point3d(225.0f, 170.0f, -135.0f));        // Right eye right corner
    model_points.push_back(cv::Point3d(-150.0f, -150.0f, -125.0f));      // Left Mouth corner
    model_points.push_back(cv::Point3d(150.0f, -150.0f, -125.0f));       // Right mouth corner

    double focal_length = imgSize.width; // Approximate focal length.
    cv::Point2d center = cv::Point2d(imgSize.width / 2, imgSize.height / 2);
    cv::Mat camera_matrix = (cv::Mat_<double>(3,3) << focal_length, 0, center.x, 0 , focal_length, center.y, 0, 0, 1);
    cv::Mat dist_coeffs = cv::Mat::zeros(4,1,cv::DataType<double>::type); // Assuming no lens distortion

    // Output rotation and translation
    cv::Mat rotation_vector; // Rotation in axis-angle form
    cv::Mat translation_vector;

    // Solve for pose
    cv::solvePnP(model_points, image_points, camera_matrix, dist_coeffs, rotation_vector, translation_vector);

    NSLog(@"Rotation Vector %f %f %f", rotation_vector.at<float>(0), rotation_vector.at<float>(1), rotation_vector.at<float>(2));
}

Оператор print в конце функции создает нереальные значения для в основном прямой позы, например:

Rotation Vector 430085088834445557973284941130104832.000000 -2.169656 -37005999085886043916656699445870592.000000
Rotation Vector -31942776355636779193640943616.000000 -2.163979 51918482290645906067188728866013184.000000

Что я делаю не так?

1 Ответ

0 голосов
/ 02 апреля 2019

Проблема в журнале оператора.Необходимо печатать двойные числа, а не числа с плавающей точкой:

NSLog(@"Rotation Vector %f %f %f", rotation_vector.at<double>(0), rotation_vector.at<double>(1), rotation_vector.at<double>(2));

Кроме того, вектор вращения не является углами Эйлера.Это должно быть преобразовано:

http://answers.opencv.org/question/16796/computing-attituderoll-pitch-yaw-from-solvepnp/?answer=52913#post-id-52913

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...