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
for i in range(10):
img_path = gallery_path[index[i]]
print(img_path)
ax = plt.subplot(1, 11, i + 2)
ax.axis('off')
plt.imshow(plt.imread(img_path))
if img_path == gallery_label:
ax.set_title('%d'%(i+1),color='green')
else:
ax.set_title('%d'%(i+1),color='red')
fig.savefig("show.png")
print('result saved to show.png')
The text was updated successfully, but these errors were encountered:
in main.py line.113 to line.137
I modified some programs but still can't get out.
I modified this code :
The text was updated successfully, but these errors were encountered: