Home > OS >  how do we interpret the "baseline" output of cv2.getTextSize?
how do we interpret the "baseline" output of cv2.getTextSize?

Time:07-21

If I do this for example: cv2.getTextSize('blahblah', cv2.FONT_HERSHEY_SIMPLEX, 2, 2) it returns ((262, 43), 19)

so the width and height of the text in pixels are 262 and 43, but what is the 19?

enter image description here

  • Related