forked from openvinotoolkit/openvino_notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
30 lines (27 loc) · 1.04 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import matplotlib.pyplot as plt
import PIL
import numpy as np
def visualize_results(orig_img:PIL.Image.Image, answer:str, question:str = None):
"""
Helper function for results visualization
Parameters:
orig_img (PIL.Image.Image): original image
answer (str): model answer in text format.
question (str, *optional*, None): input question, if not provided answer will be used as caption
Returns:
fig (matplotlib.pyplot.Figure): matplotlib generated figure contains drawing result
"""
fig = plt.figure()
fig.patch.set_facecolor('white')
ax = fig.add_subplot(111)
ax.set_xticklabels([])
ax.set_yticklabels([])
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
ax.grid(False)
ax.imshow(np.array(orig_img))
qa_text = "question: {}\nanswer: {}"
cap_text = "caption: {}"
ax.set_title(qa_text.format(question, answer) if question is not None else cap_text.format(answer),
y=-0.01, pad=-30 if question is not None else -15)
return fig