How to get coordinates from doctags to draw bounding box in the image?
#18
by
deewalia20
- opened
For given doctag:
How to decide the Coordinates of the bounding box (x, y, width, height) x, y, w, h?
@deewalia20
it's x1, y1,x2,y2, with top-left is origin.
Each Doctag loc_ coordinate designates proportion from page image width / height in the range from 0..500
Thanks I got it now.
For a given Doctag location info: <loc_proportional_x1><loc_proportional_y1><loc_x2><loc_y2>
, use the below formula where image_width and image_height are from source image.
Then use opencv or pillow to plot bounding box.
To convert these proportional coordinates to actual pixel values, you can use the following formulas:
deewalia20
changed discussion status to
closed