I'm working with output from Azure Computer Vision Read API. The
output has a boundingBox and angle of the page. I need to rotate the
points in boundingBox.
A sample boundingBox is :
- "boundingBox": [ 2.4533, 10.6901, 2.6147, 10.6901, 2.6147, 10.8193, 2.4533, 10.8193 ]
, And the angle is in degrees(-180-180).
I need to rotate the points in the bounding box in order to feel
similar to the output from a page which has 0 degree.My environment is
python.