I have recently started working with openCV and and python. I have a project where I am finding contours using findContours
. I get roughly around 6-8 contours on which I am looping to get the bounding box that fits the contour.
For that I have used minAreaRect(contours)
which gives me rotated rectangle that should fit the contour. Now the output of this command is a list of tuples.
Each tuple looks like this ((81.0, 288.0), (22.0, 10.0), -0.0)
I couldnt get any description on what each of that number mean?
I think it might be ((x-coordinate, y-coordinate),(width, height), rotation).