You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 10, 2025. It is now read-only.
When I run /colab/pix2seq_inference_object_detection.ipynb, I meet an error as shown in the following figure.
It shows that the problem lies in line233 and line243 in /tasks/visualization/vis_utils.py.
display_str_heights = [font.getsize(ds)[1] for ds in display_str_list] # line 233
text_width, text_height = font.getsize(display_str) # line 243
class PIL.ImageFont(PIL.version=10.0.0) don't have function getsize() directly, you should get the class member font first, then you can use function getsize().
so the solution is below.
display_str_heights = [font.font.getsize(ds)[1] for ds in display_str_list] # line 233
text_width, text_height = font.font.getsize(display_str) # line 243