Convert OpenCV's Rect to dlib's rectangle?

16,424

Solution 1

It has to be noted that OpenCV uses the following definition:

OpenCV typically assumes that the top and left boundary of the rectangle are inclusive, while the right and bottom boundaries are not.

dlib's definition includes all boundaries, so the conversion function has to take care of shifting bottom right corner by 1.

Here's a function that I have in my Utils.h

static cv::Rect dlibRectangleToOpenCV(dlib::rectangle r)
{
  return cv::Rect(cv::Point2i(r.left(), r.top()), cv::Point2i(r.right() + 1, r.bottom() + 1));
}

And the other way around:

static dlib::rectangle openCVRectToDlib(cv::Rect r)
{
  return dlib::rectangle((long)r.tl().x, (long)r.tl().y, (long)r.br().x - 1, (long)r.br().y - 1);
}

Solution 2

The idea is right, but you're doing wrong in accessing cv::Rect's elements.

It should be:

dets[0].l = detect_rect.x;
dets[0].t = detect_rect.y;
dets[0].r = detect_rect.x + detect_rect.width;
dets[0].b = detect_rect.y + detect_rect.height;

Solution 3

This answer is for Python.
You can use the construct of dlib rectangle wiz. dlib.rectangle(). You can use the OpenCV's facial bounding boxes
x = face[0] y = face[1] w = face[2] h = face[3]
and map them to dlib.rectangle(x, y, w, h).
Then you can call predictor code shape = predictor(img, rect)

Share:
16,424
univ_student
Author by

univ_student

Updated on July 09, 2022

Comments

  • univ_student
    univ_student almost 2 years

    I use OpenCV's face detector with C++ for dlib's face alignment instead of dlib's detector because of slow speed.
    To use dlib's face alignment, I have to pass the detection rectangle to the face alignment function.
    However, I cannot do that even though dlib's detector is ok.
    Because std::vector<rectangle> detsis used in dlib's sample code, I tried to assign as shown below, but I couldn't.
    Note that detect_rect is face detection rectangle by OpenCV's detector.

    dets[0].l = detect_rect.left;
    dets[0].t = detect_rect.top;
    dets[0].r = detect_rect.right;
    dets[0].b = detect_rect.bottom;
    

    Could you tell me any advice?

    Thank you.

  • univ_student
    univ_student over 8 years
    Thank you for your advice. I could solve by myself! The next codes work! rectangle rect(left, top, right, bottom); dets.push_back(rect); Thank you!
  • univ_student
    univ_student over 8 years
    Thank you for your advice. I could solve by myself! The next codes work! rectangle rect(left, top, right, bottom); dets.push_back(rect); I think my codes are the same to your code. Thank you for your answer!