I am using OpenCV in Java. I have two concerns, one of them is crucial for me:
I have RotatedRect and I want to Rotate this RotatedRect and get new RotatedRect or just Rect (in case of rotating strict vertical or horizontal). let it say:
RotatedRect rr = ...; //existing RotatedRect
RotatedRect result = rotateRotatedRect(rr, angle);
I need smth for rotateRotatedRect() method.
My second question is, I want to scale RotatedRect (scaling from the center or from one of the corner is fine)
Can you suggest me anything. I can implement this, but requires time and logiic. Thank you.