I'm currently working on a project using OpenCV and dlib. I wanted to convert the bounding box from the dlib detector to the bounding box format in OpenCV.
I looked it up and found this link: Boundingbox defintion for opencv object tracking
It says that OpenCV follows the format (x, y, w, h) where x and y are the xmin and ymin. Makes sense. But it also says that (xmin, ymin) is the top left point of the bounding box. How is that possible? Shouldn't the top left point be (xmin, ymax)?