Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

'ImageFont' object has no attribute 'getsize' #48

@JJJYmmm

Description

@JJJYmmm

When I run /colab/pix2seq_inference_object_detection.ipynb, I meet an error as shown in the following figure.
image
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

Then,you can see it works!
image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions