argman / EAST

A tensorflow implementation of EAST text detector
GNU General Public License v3.0
3.01k stars 1.05k forks source link

Is there an option to not rotate bounding boxes? #353

Closed s-truax closed 4 years ago

s-truax commented 4 years ago

Currently, EAST can draw rotated bounding boxes. Is there a built-in option to opt for EAST to draw a non-rotated bounding box instead of a rotated one?

daniiki commented 3 years ago

Did you find a solution to so this?

s-truax commented 3 years ago

@daniiki You can convert a polygon [x1, y1, x2, y2, ..., x_n, y_n] to a bounding rectangle by doing [min_of_xs, min_of_ys, max_of_xs, max_of_ys]